fixed display bug

This commit is contained in:
mamoniot
2022-12-23 17:06:52 -05:00
parent 8f993dd1ca
commit a4694742f8
5 changed files with 45 additions and 42 deletions

View File

@@ -135,7 +135,7 @@ local migrations_table = {
control.parameters = params
end
for id, station in pairs(map_data.stations) do
station.display_state = (station.display_state >= 2 and 4) + station.display_state%2
station.display_state = (station.display_state >= 2 and 1) + (station.display_state%2)*2
end
end,
}