Compare commits

..

1 commit

Author SHA1 Message Date
Clown
8bab4acce0
Merge 96bed9bd7e into a703e2c361 2025-03-07 13:02:06 +10:00

View file

@ -1221,6 +1221,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 },