added obj nil check

This commit is contained in:
TenPlus1 2017-06-04 20:23:40 +01:00
parent ffefd49c7b
commit 4eb1c937e5
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
-- Mobs Api (1st June 2017) -- Mobs Api (4th June 2017)
mobs = {} mobs = {}
mobs.mod = "redo" mobs.mod = "redo"
mobs.version = "20170601" mobs.version = "20170604"
-- Intllib -- Intllib
@ -359,7 +359,7 @@ local item_drop = function(self, cooked)
y = 6, y = 6,
z = random(-10, 10) / 9, z = random(-10, 10) / 9,
}) })
else elseif obj then
obj:remove() -- item does not exist obj:remove() -- item does not exist
end end
end end