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:
@@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user