Skip to content

Commit e57630a

Browse files
committed
augh
1 parent 9450b2d commit e57630a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

items/spectral.lua

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -973,12 +973,15 @@ local conduit = {
973973
if not highlighted_1.edition or not highlighted_1.edition.cry_double_sided then
974974
highlighted_1:flip()
975975
end
976-
highlighted_1:set_edition(highlighted_2.edition)
976+
if highlighted_2.edition then
977+
highlighted_1:set_edition(highlighted_2.edition)
978+
end
977979
if not highlighted_2.edition or not highlighted_2.edition.cry_double_sided then
978980
highlighted_2:flip()
979981
end
980-
981-
highlighted_2:set_edition(one_edition)
982+
if one_edition then
983+
highlighted_2:set_edition(one_edition)
984+
end
982985
play_sound("card1", percent)
983986
highlighted_1:juice_up(0.3, 0.3)
984987
highlighted_2:juice_up(0.3, 0.3)

lib/forcetrigger.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,7 @@ function Cryptid.forcetrigger(card, context)
939939
if
940940
(card.ability.consumeable.max_highlighted or card.ability.name == "Aura")
941941
and not card.config.center.force_use
942+
--and not card.config.center.force_use
942943
then --Cards that require cards in hand to be selected
943944
local _cards = {}
944945
local targets = {}
@@ -1196,5 +1197,5 @@ function Cryptid.forcetriggerConsumableCheck(card)
11961197
return false
11971198
end
11981199
end
1199-
return (card.config.center.force_use and card.config.center.demicoloncompat) or not card.config.center.original_mod
1200+
return (card.config.center.demicoloncompat) or not card.config.center.original_mod
12001201
end

0 commit comments

Comments
 (0)