fix: Lint, actual release

This commit is contained in:
Mark Marks 2024-09-22 00:53:56 +02:00
parent 5a043b2912
commit 1c7a95215d
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ local function flush()
end end
for world in delete_commands do for world in delete_commands do
table.clear(delete_commands) table.clear(delete_commands[world])
end end
end end

View file

@ -63,7 +63,7 @@ function handle:set<T>(id: id<T>, value: T): handle
end end
function handle:remove(id: id): handle function handle:remove(id: id): handle
world():remove(self.entity, id) self.world:remove(self.entity, id)
return self return self
end end