Make planets disappear

This commit is contained in:
Emik 2026-05-23 18:39:57 +02:00
parent e26b590128
commit 0fdef846cb
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 5 additions and 2 deletions

View file

@ -17,5 +17,5 @@
"conflicts": [ "conflicts": [
"Jen" "Jen"
], ],
"version": "1.6.6" "version": "1.6.7"
} }

View file

@ -394,7 +394,10 @@ SMODS.Joker {
local c = G.pack_cards.cards local c = G.pack_cards.cards
for i = #c, 1, -1 do 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
end, end,
} }