summaryrefslogtreecommitdiffstats
path: root/src/jake2/game
diff options
context:
space:
mode:
authorRene Stoeckel <[email protected]>2005-03-13 20:52:05 +0000
committerRene Stoeckel <[email protected]>2005-03-13 20:52:05 +0000
commit64b12838ba4cb84fe9fe48c3128fd363c7bf9f15 (patch)
tree049045a6a2d5740ab0328a17985fae6c1b31eba0 /src/jake2/game
parent82f8c0e24b4630dee032c8f655bb2af7b4d71658 (diff)
fixes bug on say command with 1 argument
Diffstat (limited to 'src/jake2/game')
-rw-r--r--src/jake2/game/Cmd.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jake2/game/Cmd.java b/src/jake2/game/Cmd.java
index 4fd5277..d82bffd 100644
--- a/src/jake2/game/Cmd.java
+++ b/src/jake2/game/Cmd.java
@@ -2,7 +2,7 @@
* Cmd.java
* Copyright (C) 2003
*
- * $Id: Cmd.java,v 1.12 2005-02-13 17:02:46 cawe Exp $
+ * $Id: Cmd.java,v 1.13 2005-03-13 20:52:05 salomo Exp $
*/
/*
Copyright (C) 1997-2001 Id Software, Inc.
@@ -250,6 +250,7 @@ public final class Cmd {
String com_token;
cmd_argc = 0;
+ cmd_args = "";
int len = Lib.strlen(text);