Fix Escapey destroying jokers on new deck

This commit is contained in:
Emik 2026-06-06 14:14:55 +02:00
parent 87e5be7ba7
commit d57cbca9af
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 2 additions and 2 deletions

View file

@ -17,5 +17,5 @@
"conflicts": [ "conflicts": [
"Jen" "Jen"
], ],
"version": "1.7.0" "version": "1.7.1"
} }

View file

@ -49,7 +49,7 @@ local granddad_palette = {
} }
local function destructible(card) local function destructible(card)
return not card.highlighted and not (card.ability or {}).eternal return card.ability.consumeable and not card.highlighted and not (card.ability or {}).eternal
end end
local function food_jokers_count() local function food_jokers_count()