Skip to content

Commit 7ac47c4

Browse files
committed
2 parents 5e91f08 + bf7acd4 commit 7ac47c4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

items/code.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5191,7 +5191,10 @@ return {
51915191
--Code from Betmma's Vouchers
51925192
G.FUNCS.can_reserve_card = function(e)
51935193
local c1 = e.config.ref_table
5194-
if #G.consumeables.cards < G.consumeables.config.card_limit + (Cryptid.safe_get(c1, "edition", "negative") and 1 or 0) then
5194+
if
5195+
#G.consumeables.cards
5196+
< G.consumeables.config.card_limit + (Cryptid.safe_get(c1, "edition", "negative") and 1 or 0)
5197+
then
51955198
e.config.colour = G.C.GREEN
51965199
e.config.button = "reserve_card"
51975200
else

items/misc_joker.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ local queensgambit = {
324324
return true
325325
end,
326326
}))
327-
return {remove = true}
327+
return { remove = true }
328328
end
329329
end
330330
end,

0 commit comments

Comments
 (0)