summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-09-12 15:29:37 +0000
committerdarkvater <darkvater@openttd.org>2004-09-12 15:29:37 +0000
commit99687cf513905a04ae18dfbcbe6fd13c6cbe9694 (patch)
tree6a2158dce07948cb902981f67daff0a278fe73f2 /command.h
parentf64c1bda4ba0d4723974117e27452a68611d5db4 (diff)
downloadopenttd-99687cf513905a04ae18dfbcbe6fd13c6cbe9694.tar.xz
(svn r214) -Feature: CMD_NET_INSTANT [just in time command handling over network] (sign_de)
-Fix: Only server can pause in network, action disabled for clients -Fix: Direct Connect editbox can handle up to max ~35 characters
Diffstat (limited to 'command.h')
-rw-r--r--command.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/command.h b/command.h
index 4dc4ad911..051c1fbef 100644
--- a/command.h
+++ b/command.h
@@ -168,6 +168,7 @@ enum {
CMD_NO_WATER = 0x400,
CMD_DONT_NETWORK = 0x800, // execute the command without sending it on the network
CMD_ASYNC = 0x1000, // execute the command asynchronously without testing first in networking
+ CMD_NET_INSTANT = 0x2000,
};
//#define return_cmd_error(errcode) do { _error_message=(errcode); return CMD_ERROR; } while(0)