Fix typo (GH#7421)

This commit is contained in:
number Zero 2018-06-10 00:52:30 +03:00 committed by sfan5
parent 2c0d8b25dd
commit 90acb9b3a7
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ end
function core.run_priv_callbacks(name, priv, caller, method)
local def = core.registered_privileges[priv]
if not def or not def["on_" .. method] or
not def[priv]["on_" .. method](name, caller) then
not def["on_" .. method](name, caller) then
for _, func in ipairs(core["registered_on_priv_" .. method]) do
if not func(name, caller, priv) then
break