1
0
Fork 0

(svn r11913) -Fix (r11871): update signals after company bankrupt and disaster too

release/0.6
smatz 2008-01-18 02:16:39 +00:00
parent 307b0e8e7a
commit 0b3db1a92d
2 changed files with 6 additions and 3 deletions

View File

@ -72,6 +72,9 @@ static void DisasterClearSquare(TileIndex tile)
_current_player = OWNER_WATER; _current_player = OWNER_WATER;
DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR); DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
_current_player = p; _current_player = p;
/* update signals in buffer */
UpdateSignalsInBuffer();
} }
break; break;

View File

@ -449,10 +449,10 @@ void ChangeOwnershipOfPlayerItems(PlayerID old_player, PlayerID new_player)
UpdateLevelCrossing(tile); UpdateLevelCrossing(tile);
} }
} while (++tile != MapSize()); } while (++tile != MapSize());
/* update signals in buffer */
UpdateSignalsInBuffer();
} }
/* update signals in buffer */
UpdateSignalsInBuffer();
} }
/* Change color of existing windows */ /* Change color of existing windows */