Log usage of /pulverize (#7503)

This commit is contained in:
Anand S 2018-06-30 16:23:43 +05:30 committed by SmallJoker
parent 222866bab7
commit f3b7be97fe
1 changed files with 5 additions and 2 deletions

View File

@ -683,10 +683,13 @@ core.register_chatcommand("pulverize", {
core.log("error", "Unable to pulverize, no player.")
return false, "Unable to pulverize, no player."
end
if player:get_wielded_item():is_empty() then
local wielded_item = player:get_wielded_item()
if wielded_item:is_empty() then
return false, "Unable to pulverize, no item in hand."
end
player:set_wielded_item(nil)
core.log("action", name .. " pulverized \"" ..
wielded_item:get_name() .. " " .. wielded_item:get_count() .. "\"")
player:set_wielded_item(nil)
return true, "An item was pulverized."
end,
})