summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-14 18:13:02 +0000
committertruelight <truelight@openttd.org>2004-12-14 18:13:02 +0000
commit55f334751475a2e1826c51ac43d27445f5c8a8ac (patch)
tree3f0a5ce3c6d43a283f77392f8c14a31099156126 /command.c
parent23612e41f2a01b726d7aa9f29f45eb501cf71882 (diff)
downloadopenttd-55f334751475a2e1826c51ac43d27445f5c8a8ac.tar.xz
(svn r1085) -Fix: [Network] [ 1084834 ] If IF_IN_NETWORK flag was on, an error
resulted in infinite money (or assert)
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index c9bcdb59a..95c290b9c 100644
--- a/command.c
+++ b/command.c
@@ -472,7 +472,7 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
// If notest is on, it means the result of the test can be different then
// the real command.. so ignore the test
- if (!notest) {
+ if (!notest && !((cmd & CMD_NO_TEST_IF_IN_NETWORK) && _networking)) {
assert(res == res2); // sanity check
} else {
if ((uint32)res2 >> 16 == 0x8000) {