From 0fdef846cba6c51f103f0e7644ba7773c570da2e Mon Sep 17 00:00:00 2001 From: Emik Date: Sat, 23 May 2026 18:39:57 +0200 Subject: [PATCH] Make planets disappear --- manifest.json | 2 +- src/slugcat.lua | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index d04d0ad..8f11bae 100644 --- a/manifest.json +++ b/manifest.json @@ -17,5 +17,5 @@ "conflicts": [ "Jen" ], - "version": "1.6.6" + "version": "1.6.7" } \ No newline at end of file diff --git a/src/slugcat.lua b/src/slugcat.lua index fa5e39e..8923e4e 100644 --- a/src/slugcat.lua +++ b/src/slugcat.lua @@ -394,7 +394,10 @@ SMODS.Joker { local c = G.pack_cards.cards for i = #c, 1, -1 do - local _ = (((c[i] or {}).ability or {}).consumeable or {}).hand_type and c[i]:use_consumeable() + if (((c[i] or {}).ability or {}).consumeable or {}).hand_type then + c[i]:use_consumeable() + local _ = c[i] and c[i]:start_dissolve() + end end end, }