We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931a8d7 commit b87ce03Copy full SHA for b87ce03
utilities.lua
@@ -556,8 +556,8 @@ function Cryptid.get_next_tag()
556
end
557
558
function Cryptid.is_number(x)
559
- return type(x) == "number" or (type(x) == "table" and x.tetrate) or (is_big and is_big(x))
+ return type(x) == "number" or (type(x) == "table" and is_number(x)) or (is_big and is_big(x))
560
561
function Cryptid.is_big(x)
562
- return (type(x) == "table" and x.tetrate) or (is_big and is_big(x))
+ return (type(x) == "table" and is_number(x)) or (is_big and is_big(x))
563
0 commit comments