is_alive, is_empty -> alive, empty

This commit is contained in:
BlackMATov
2025-04-24 08:26:38 +07:00
parent 3fb1467e79
commit 777b80b3b4
5 changed files with 355 additions and 355 deletions

View File

@@ -110,11 +110,11 @@ for chunk in evo.execute(all_chunk_query) do
end
for _, destroying_entity in ipairs(destroying_entity_list) do
assert(not evo.is_alive(destroying_entity))
assert(not evo.alive(destroying_entity))
end
for _, destroyed_entity in ipairs(should_be_destroyed_entity_list) do
assert(not evo.is_alive(destroyed_entity))
assert(not evo.alive(destroyed_entity))
end
---