Protect on_pick_up against unsafe usage

This commit is contained in:
cora 2022-10-23 13:46:27 +02:00
parent d00f5a695f
commit 34dcba0b70
1 changed files with 2 additions and 2 deletions

View File

@ -3134,9 +3134,9 @@ local function check_item_pickup(self)
for k,v in pairs(self.pick_up) do
if not player_near(p) and self.on_pick_up and l.itemstring:find(v) then
local r = self.on_pick_up(self,l)
if r and r:get_count() > 0 then
if r and r.is_empty and not r:is_empty() then
l.itemstring = r:to_string()
else
elseif r and r.is_empty and r:is_empty() then
o:remove()
end
end