(svn r3283) -Fix: decode_parameters was still used, while _cmd_text is the way

-Fix: _cmd_text is cleared after a command, so we need to store it 
  temporaray in order to first test the command, before executing
This commit is contained in:
truelight
2005-12-10 18:43:49 +00:00
parent 809b03c81a
commit ba7cc8e190
2 changed files with 31 additions and 7 deletions

View File

@@ -15,7 +15,8 @@ typedef struct AICommand {
uint32 p2;
uint32 procc;
uint32 dp[20];
char *text;
uint uid;
struct AICommand *next;
} AICommand;