style fix, update roadmap

# Conflicts:
#	ROADMAP.md
This commit is contained in:
BlackMATov
2025-03-18 16:13:07 +07:00
parent bd08540ce0
commit 66e13faf71
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
## Backlog
- should set/assign/insert return a constructed component?
- remove __evolved_defer/commit to __defer/commit indirect calls
- enable/disable systems and phases
- add optional immediate mode for systems
- cached queries

View File

@@ -4940,7 +4940,7 @@ __evolved_is_alive = function(chunk_or_entity)
local entity = chunk_or_entity --[[@as evolved.entity]]
local entity_index = entity % 0x100000
return __freelist_ids[entity_index] == chunk_or_entity
return __freelist_ids[entity_index] == entity
end
end