From fa1b398c088961ab0aa5f5f93242d8e202df3e4f Mon Sep 17 00:00:00 2001 From: Emik Date: Sat, 6 Jun 2026 14:14:55 +0200 Subject: [PATCH] Fix Escapey destroying jokers on new deck --- manifest.json | 2 +- src/joker.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 07728f7..987ecc2 100644 --- a/manifest.json +++ b/manifest.json @@ -17,5 +17,5 @@ "conflicts": [ "Jen" ], - "version": "1.7.0" + "version": "1.7.1" } \ No newline at end of file diff --git a/src/joker.lua b/src/joker.lua index 441fb0c..94058ba 100644 --- a/src/joker.lua +++ b/src/joker.lua @@ -49,7 +49,7 @@ local granddad_palette = { } 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 local function food_jokers_count()