diff options
author | darkvater <darkvater@openttd.org> | 2004-09-12 22:14:45 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2004-09-12 22:14:45 +0000 |
commit | 54bd5b3c1d8134d090a46deec712d0dec23034ee (patch) | |
tree | 4c5384ce51d19e7cdd78705fdbb78577832802c6 | |
parent | b2d55a936f1728953c521622e4769a96ff111183 (diff) | |
download | openttd-54bd5b3c1d8134d090a46deec712d0dec23034ee.tar.xz |
(svn r227) -Fix: Sorry, broke console commands
-rw-r--r-- | console.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -704,9 +704,10 @@ bool IConsoleVarHookHandle(_iconsole_var * hook_var, byte type) case ICONSOLE_HOOK_ACCESS: proc = hook_var->hook_access; break; - default: return true; } + if (proc == NULL) { return true;} + return proc(hook_var); } @@ -741,9 +742,10 @@ bool IConsoleCmdHookHandle(_iconsole_cmd * hook_cmd, byte type) case ICONSOLE_HOOK_ACCESS: proc = hook_cmd->hook_access; break; - default: return true; } + if (proc == NULL) { return true;} + return proc(hook_cmd); } |