Skip to content

Commit 0203776

Browse files
authored
Merge pull request #82 from lord-ruby/dev
hopefully fixes pink seal ghost cards
2 parents af48fde + 7f0e641 commit 0203776

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

items/misc/seals.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,22 +172,26 @@ local pink = {
172172
for i, v in pairs(G.hand.cards) do
173173
if v.ability.link == link then
174174
cards[#cards+1] = v
175+
v.ability.temporary2 = true
175176
end
176177
end
177178
for i, v in pairs(G.discard.cards) do
178179
if v.ability.link == link then
179180
cards[#cards+1] = v
181+
v.ability.temporary2 = true
180182
end
181183
end
182184
for i, v in pairs(G.deck.cards) do
183185
if v.ability.link == link then
184186
cards[#cards+1] = v
187+
v.ability.temporary2 = true
185188
end
186189
end
187190
SMODS.destroy_cards(cards, nil)
188191
else
189192
SMODS.destroy_cards(card, nil)
190193
end
194+
card.ability.temporary2 = true
191195
end
192196
G.E_MANAGER:add_event(Event({
193197
func = function()

0 commit comments

Comments
 (0)