updated handling

This commit is contained in:
Chr1Z93 2024-07-02 19:32:40 +02:00
parent fdb3ac6851
commit eb9a152fbe

View File

@ -207,7 +207,7 @@ end
-- TTS event for objects that leave zones
function onObjectLeaveZone(zone, object)
if zone == nil or object == nil then return end
if zone.isDestroyed() or object.isDestroyed() then return end
if zone.type == "Hand" and object.hasTag("CardWithHelper") then
object.call("updateDisplay")
end