Skip to content

Commit cbf68ce

Browse files
committed
2 parents 3883515 + c190576 commit cbf68ce

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

items/tag.lua

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,9 @@ local glitched_tag = {
519519
apply = function(self, tag, context)
520520
if context.type == "store_joker_modify" then
521521
local _applied = nil
522-
if cry_forced_edition() then tag:nope() end
522+
if cry_forced_edition() then
523+
tag:nope()
524+
end
523525
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
524526
local lock = tag.ID
525527
G.CONTROLLER.locks[lock] = true
@@ -572,7 +574,9 @@ local oversat_tag = {
572574
apply = function(self, tag, context)
573575
if context.type == "store_joker_modify" then
574576
local _applied = nil
575-
if cry_forced_edition() then tag:nope() end
577+
if cry_forced_edition() then
578+
tag:nope()
579+
end
576580
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
577581
local lock = tag.ID
578582
G.CONTROLLER.locks[lock] = true
@@ -625,7 +629,9 @@ local mosaic_tag = {
625629
apply = function(self, tag, context)
626630
if context.type == "store_joker_modify" then
627631
local _applied = nil
628-
if cry_forced_edition() then tag:nope() end
632+
if cry_forced_edition() then
633+
tag:nope()
634+
end
629635
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
630636
local lock = tag.ID
631637
G.CONTROLLER.locks[lock] = true
@@ -678,7 +684,9 @@ local gold_tag = {
678684
apply = function(self, tag, context)
679685
if context.type == "store_joker_modify" then
680686
local _applied = nil
681-
if cry_forced_edition() then tag:nope() end
687+
if cry_forced_edition() then
688+
tag:nope()
689+
end
682690
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
683691
local lock = tag.ID
684692
G.CONTROLLER.locks[lock] = true
@@ -731,7 +739,9 @@ local glass_tag = {
731739
apply = function(self, tag, context)
732740
if context.type == "store_joker_modify" then
733741
local _applied = nil
734-
if cry_forced_edition() then tag:nope() end
742+
if cry_forced_edition() then
743+
tag:nope()
744+
end
735745
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
736746
local lock = tag.ID
737747
G.CONTROLLER.locks[lock] = true
@@ -784,7 +794,9 @@ local blur_tag = {
784794
apply = function(self, tag, context)
785795
if context.type == "store_joker_modify" then
786796
local _applied = nil
787-
if cry_forced_edition() then tag:nope() end
797+
if cry_forced_edition() then
798+
tag:nope()
799+
end
788800
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
789801
local lock = tag.ID
790802
G.CONTROLLER.locks[lock] = true
@@ -838,7 +850,9 @@ local astral_tag = {
838850
apply = function(self, tag, context)
839851
if context.type == "store_joker_modify" then
840852
local _applied = nil
841-
if cry_forced_edition() then tag:nope() end
853+
if cry_forced_edition() then
854+
tag:nope()
855+
end
842856
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
843857
local lock = tag.ID
844858
G.CONTROLLER.locks[lock] = true
@@ -891,7 +905,9 @@ local m_tag = {
891905
apply = function(self, tag, context)
892906
if context.type == "store_joker_modify" then
893907
local _applied = nil
894-
if cry_forced_edition() then tag:nope() end
908+
if cry_forced_edition() then
909+
tag:nope()
910+
end
895911
if not context.card.edition and not context.card.temp_edition and context.card.ability.set == "Joker" then
896912
local lock = tag.ID
897913
G.CONTROLLER.locks[lock] = true

lib/misc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,4 +713,4 @@ end
713713
-- Will cause edition tags to Nope!
714714
function cry_forced_edition()
715715
return G.GAME.modifiers.cry_force_edition or G.GAME.used_vouchers.v_cry_curate
716-
end
716+
end

0 commit comments

Comments
 (0)