diff --git a/shared/src/helpers/Type.h b/shared/src/helpers/Type.h index e01b60d7f..8f2d82b18 100644 --- a/shared/src/helpers/Type.h +++ b/shared/src/helpers/Type.h @@ -139,7 +139,7 @@ namespace js if constexpr(std::is_same_v) return Type::NULL_TYPE; if constexpr(std::is_same_v) return Type::BOOLEAN; if constexpr((std::is_integral_v || std::is_floating_point_v) && sizeof(T) < 8) return Type::NUMBER; - if constexpr((std::is_integral_v || std::is_floating_point_v) && sizeof(T) > 8) return Type::BIG_INT; + if constexpr((std::is_integral_v || std::is_floating_point_v) && sizeof(T) >= 8) return Type::BIG_INT; if constexpr(std::is_same_v) return Type::STRING; if constexpr(std::is_same_v || std::is_same_v || std::is_same_v) return Type::VECTOR3; if constexpr(std::is_same_v) return Type::VECTOR2;