From 16865a5bf65daae6131f1ad3d0df98be8b01f0f0 Mon Sep 17 00:00:00 2001 From: DS Date: Sun, 29 Sep 2019 13:40:15 +0200 Subject: [PATCH] Allow grep-ing for on_grant and on_revoke (#8958) Just two code comments are added. --- builtin/game/chat.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index f5b687732..ad703b94c 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -186,6 +186,7 @@ local function handle_grant_command(caller, grantname, grantprivstr) return false, privs_unknown end for priv, _ in pairs(grantprivs) do + -- call the on_grant callbacks core.run_priv_callbacks(grantname, priv, caller, "grant") end core.set_player_privs(grantname, privs) @@ -258,6 +259,7 @@ core.register_chatcommand("revoke", { end for priv, _ in pairs(revoke_privs) do + -- call the on_revoke callbacks core.run_priv_callbacks(revoke_name, priv, name, "revoke") end