20 lines
565 B
Lua
20 lines
565 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local minetest, pairs
|
|
= minetest, pairs
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
minetest.register_privilege("pulverize", {
|
|
description = "Can pulverize inventory items",
|
|
give_to_singleplayer = false,
|
|
give_to_admin = false
|
|
})
|
|
|
|
local wrap = {pulverize = true, clearinv = true}
|
|
for k, v in pairs(minetest.registered_chatcommands) do
|
|
if wrap[k] then
|
|
v.privs = v.privs or {}
|
|
v.privs.pulverize = true
|
|
minetest.override_chatcommand(k, v)
|
|
end
|
|
end
|