diff options
author | Darkvater <darkvater@openttd.org> | 2006-11-10 18:34:19 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-11-10 18:34:19 +0000 |
commit | d0e0b78a3264f888ed5995ba9ca4a8bf2cf8a2d2 (patch) | |
tree | 939c05a9e44caec768e4d59012e966a3303a3c68 | |
parent | 73ca5faa2efe6abd28aadacbccf9d5a02f13c7a3 (diff) | |
download | openttd-d0e0b78a3264f888ed5995ba9ca4a8bf2cf8a2d2.tar.xz |
(svn r7126) -Synchronize the engine-renew settings of a player when joining a multiplayer game.
-rw-r--r-- | players.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -860,6 +860,8 @@ int32 CmdPlayerCtrl(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (_local_player != _network_playas) { assert(_local_player == PLAYER_SPECTATOR && _network_playas == p->index); _local_player = p->index; + DoCommandP(0, (_patches.autorenew << 15 ) | (_patches.autorenew_months << 16) | 4, _patches.autorenew_money, NULL, CMD_SET_AUTOREPLACE); + MarkWholeScreenDirty(); } |