Compare commits

..

1 commit

Author SHA1 Message Date
lolmanurfunny
984416f2a8
Merge 3a560393f1 into a703e2c361 2025-03-07 06:50:34 -05:00

View file

@ -1226,6 +1226,27 @@ end
local function NOOP() end
local function ARM(query, ...)
return query
end
local EMPTY_LIST = {}
local EMPTY_QUERY = {
__iter = function()
return NOOP
end,
iter = function()
return NOOP
end,
with = ARM,
without = ARM,
archetypes = function()
return EMPTY_LIST
end,
}
setmetatable(EMPTY_QUERY, EMPTY_QUERY)
type QueryInner = {
compatible_archetypes: { Archetype },
ids: { i53 },