(svn r1265) -Fix: the server can also no longer use the money cheat if the
authortruelight
Thu, 23 Dec 2004 21:58:01 +0000
changeset 795 d3dc1a63e57f
parent 794 dd738f61acc3
child 796 ffa693752831
(svn r1265) -Fix: the server can also no longer use the money cheat if the
advertise-mode is active
ttd.c
--- a/ttd.c	Thu Dec 23 20:42:24 2004 +0000
+++ b/ttd.c	Thu Dec 23 21:58:01 2004 +0000
@@ -1303,7 +1303,9 @@
 		*(byte*)0 = 0;
 		break;
 	case 1:
-		DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT);
+		/* Server can not cheat in advertise mode either! */
+		if (!_networking || !_network_server || !_network_advertise)
+			DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT);
 		break;
 	case 2:
 		UpdateAllStationVirtCoord();