Skip to content

Commit 328477e

Browse files
committed
fix blacklist order check
1 parent ac34545 commit 328477e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/pointerlib.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ end
9999

100100
function Cryptid.pointergetblist(target) -- "Is this card pointer banned?"
101101
target = Cryptid.pointergetalias(target) or target
102-
target = G.P_CENTERS[target] or target
102+
target = target
103103
results = {}
104104
results[1] = false
105105
if not target then
@@ -133,6 +133,7 @@ function Cryptid.pointergetblist(target) -- "Is this card pointer banned?"
133133
if G.DEBUG_POINTER then
134134
results[1] = false
135135
end
136+
target = G.P_CENTERS[target] or target
136137
if results[1] == false then
137138
if target and target.set == "Joker" then
138139
results[2] = "Joker"

0 commit comments

Comments
 (0)