Mobs: Drop cooked item if died in fire

master
Wuzzy 2020-03-15 09:07:38 +01:00
parent 3772dd51cc
commit fb9d0f7a7c
1 changed files with 2 additions and 2 deletions

View File

@ -589,8 +589,8 @@ local check_for_death = function(self, cause, cmi_cause)
return false
end
-- dropped cooked item if mob died in lava
if cause == "lava" then
-- dropped cooked item if mob died in fire or lava
if cause == "lava" or cause == "fire" then
item_drop(self, true)
else
item_drop(self, nil)