Make planets disappear
This commit is contained in:
parent
e26b590128
commit
0fdef846cb
2 changed files with 5 additions and 2 deletions
|
|
@ -17,5 +17,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.6.6"
|
"version": "1.6.7"
|
||||||
}
|
}
|
||||||
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue