From 573ce05eb8f97e03f20fc73a5c00738404f3517f Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 13 Dec 2005 21:21:57 +0000 Subject: (svn r3294) - Fix: use INVALID_STRING_ID instead of -1. - Fix: savegames only give back one message, show this by ignoring the first argument. Perhaps make the message more verbose in the future by adding STR_ equivalents next to the already existing debug messages. --- command.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index 5b32156a8..981677f35 100644 --- a/command.c +++ b/command.c @@ -340,9 +340,7 @@ int32 DoCommand(int x, int y, uint32 p1, uint32 p2, uint32 flags, uint procc) proc = _command_proc_table[procc].proc; - if (_docommand_recursive == 0) { - _error_message = INVALID_STRING_ID; - } + if (_docommand_recursive == 0) _error_message = INVALID_STRING_ID; _docommand_recursive++; -- cgit v1.2.3-54-g00ecf