registered npc_talk_master priv

This commit is contained in:
Sokomine 2021-05-29 19:35:27 +02:00
parent 05a2384b20
commit e820ce312e

View File

@ -13,3 +13,11 @@ local npc_talk_owner_priv_definition = {
}
minetest.register_privilege("npc_talk_owner", npc_talk_owner_priv_definition)
local npc_talk_master_priv_definition = {
description="Can edit the dialogs of NPCs independent of owner",
give_to_singleplayer = false,
give_to_admin = true,
}
minetest.register_privilege("npc_talk_master", npc_talk_master_priv_definition)