16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 00:09:18 +02:00

Fix lightsset command for different head

This commit is contained in:
2025-09-19 20:27:42 +02:00
parent 5cc68b9f2f
commit 7463ceb99c

View File

@@ -4435,13 +4435,11 @@ void TTrain::OnCommand_headlighttoggleleft( TTrain *Train, command_data const &C
void TTrain::OnCommand_lightsset(TTrain *Train, command_data const &Command) void TTrain::OnCommand_lightsset(TTrain *Train, command_data const &Command)
{ {
Train->mvOccupied->iLights[end::front] = Command.param1;
Train->mvOccupied->iLights[end::rear] = Command.param2;
// set custom item in Lights inventory // set custom item in Lights inventory
Train->mvOccupied->Lights[end::front][17] = Command.param1; Train->mvOccupied->Lights[end::front][17] = Command.param1;
Train->mvOccupied->Lights[end::rear][17] = Command.param2; Train->mvOccupied->Lights[end::rear][17] = Command.param2;
Train->mvOccupied->LightsPos = 18; // nasza custom pozycja Train->mvOccupied->LightsPos = 18; // nasza custom pozycja
Train->Dynamic()->SetLights();
} }