summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/console_cmds.c b/console_cmds.c
index adf67f202..ab0364bfd 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -611,9 +611,7 @@ DEF_CONSOLE_CMD(ConExec)
fgets(cmd, sizeof(cmd), _script_file);
while (!feof(_script_file) && _script_running) {
- strtok(cmd, "\r\n#");
- if (strlen(cmd) > 0 && cmd[0] != '#')
- IConsoleCmdExec(cmd);
+ IConsoleCmdExec(cmd);
fgets(cmd, sizeof(cmd), _script_file);
}