summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin/game/chat.lua2
1 files changed, 2 insertions, 0 deletions
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