Drop carved pumpkin when shearing snow golem

This commit is contained in:
Nils Dagsson Moskopp 2022-02-23 18:54:03 +01:00
parent c4912effaf
commit fdd3c5db86
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
1 changed files with 4 additions and 0 deletions

View File

@ -123,6 +123,10 @@ mobs:register_mob("mobs_mc:snowman", {
local pos = self.object:get_pos()
minetest.sound_play("mcl_tools_shears_cut", {pos = pos}, true)
if minetest.registered_items["mcl_farming:pumpkin_face"] then
minetest.add_item({x=pos.x, y=pos.y+1.4, z=pos.z}, "mcl_farming:pumpkin_face")
end
-- Wear out
if not minetest.is_creative_enabled(clicker:get_player_name()) then
item:add_wear(mobs_mc.misc.shears_wear)