Skip to content

Commit ef304de

Browse files
committed
stop booster packs from being bignums
1 parent e6b68e5 commit ef304de

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/misprintize.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,10 @@ function Cryptid.manipulate(card, args)
407407
if not args.type then
408408
args.type = "X"
409409
end
410+
--hardcoded whatever
411+
if card.config.center.set == "Booster" then
412+
args.big = false
413+
end
410414
local caps = card.config.center.misprintize_caps or {}
411415
if card.infinifusion then
412416
if card.config.center == card.infinifusion_center or card.config.center.key == "j_infus_fused" then
@@ -458,7 +462,7 @@ function Cryptid.manipulate_table(card, ref_table, ref_value, args)
458462
end
459463
num = Cryptid.base_values[card.config.center.key][i]
460464
end
461-
if args.big then
465+
if args.big ~= nil then
462466
ref_table[ref_value][i] = Cryptid.manipulate_value(num, args, args.big, i)
463467
else
464468
ref_table[ref_value][i] = Cryptid.manipulate_value(num, args, Cryptid.is_card_big(card), i)

0 commit comments

Comments
 (0)