Skip to content

Commit 49cad87

Browse files
committed
tarot card fix
1 parent 5151b85 commit 49cad87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

items/misc.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ local glitched = {
499499
}))
500500
update_hand_text(
501501
{ delay = 1.3 },
502-
{ chips = (amount > to_big(0) and "+" or "-") .. "???", StatusText = true }
502+
{ chips = (to_big(amount) > to_big(0) and "+" or "-") .. "???", StatusText = true }
503503
)
504504
G.E_MANAGER:add_event(Event({
505505
trigger = "after",
@@ -1746,7 +1746,7 @@ local seraph = {
17461746
pos = { x = 1, y = 2 },
17471747
config = { mod_conv = "m_cry_light", max_highlighted = 2 },
17481748
atlas = "placeholders",
1749-
loc_vars = function(self, info_queue)
1749+
loc_vars = function(self, info_queue, card)
17501750
info_queue[#info_queue + 1] = G.P_CENTERS.m_cry_light
17511751

17521752
return { vars = { card and card.ability.max_highlighted or self.config.max_highlighted } }

0 commit comments

Comments
 (0)