mirror of
https://github.com/minetest/minetest.git
synced 2025-01-10 10:00:22 +01:00
Fix typo (GH#7421)
This commit is contained in:
parent
2c0d8b25dd
commit
90acb9b3a7
@ -445,7 +445,7 @@ end
|
|||||||
function core.run_priv_callbacks(name, priv, caller, method)
|
function core.run_priv_callbacks(name, priv, caller, method)
|
||||||
local def = core.registered_privileges[priv]
|
local def = core.registered_privileges[priv]
|
||||||
if not def or not def["on_" .. method] or
|
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
|
for _, func in ipairs(core["registered_on_priv_" .. method]) do
|
||||||
if not func(name, caller, priv) then
|
if not func(name, caller, priv) then
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user