1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-02 03:19:10 +00:00

(svn r2951) - Fix: [ 1259345 ] Changing engine in netgame opens train window for everyone

- Add IsLocalPlayer() which substitutes _local_player == _current_player
This commit is contained in:
Darkvater
2005-09-14 18:03:38 +00:00
parent 1bf06d7da4
commit 2131f68ae2
12 changed files with 26 additions and 28 deletions

View File

@@ -1043,7 +1043,7 @@ int32 CmdSellRailWagon(int x, int y, uint32 flags, uint32 p1, uint32 p2)
new_f->orders = first->orders;
new_f->num_orders = first->num_orders;
first->orders = NULL; // XXX - to not to delete the orders */
ShowTrainViewWindow(new_f);
if (IsLocalPlayer()) ShowTrainViewWindow(new_f);
}
}
}