Skip to content

Commit 04f806b

Browse files
committed
get next tag fixes
1 parent 980d60e commit 04f806b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

utilities.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function Cryptid.is_card_big(joker)
143143
return false
144144
end
145145

146-
local in_blacklist = (Cryptid or {}).big_num_blacklist[center.key or "Nope!"] or false
146+
local in_blacklist = ((Cryptid or {}).big_num_blacklist or {})[center.key or "Nope!"] or false
147147

148148
return not in_blacklist --[[or
149149
(center.mod and center.mod.id == "Cryptid" and not center.no_break_infinity) or center.break_infinity--]]
@@ -550,3 +550,7 @@ function Cryptid.pulse_flame(duration, intensity) -- duration is in seconds, int
550550
G.cry_flame_override["duration"] = duration or 0.01
551551
G.cry_flame_override["intensity"] = intensity or 2
552552
end
553+
554+
function Cryptid.get_next_tag()
555+
556+
end

0 commit comments

Comments
 (0)