1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-15 02:29:10 +00:00

(svn r227) -Fix: Sorry, broke console commands

This commit is contained in:
darkvater
2004-09-12 22:14:45 +00:00
parent b2d55a936f
commit 54bd5b3c1d

View File

@@ -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);
}