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, }