mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-15 12:19:47 +07:00
update roadmap
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
- optimize batch operations for cases with moving entities to empty chunks
|
- optimize batch operations for cases with moving entities to empty chunks
|
||||||
- should we clear chunk's components by on_insert tag callback?
|
- should we clear chunk's components by on_insert tag callback?
|
||||||
- try to keep entity_chunks/places tables as arrays
|
- try to keep entity_chunks/places tables as arrays
|
||||||
|
- update chunk precached hook flags after adding/removing hooks
|
||||||
|
|
||||||
## After first release
|
## After first release
|
||||||
|
|
||||||
|
|||||||
@@ -3748,7 +3748,10 @@ function evolved.set(entity, fragment, ...)
|
|||||||
end
|
end
|
||||||
else
|
else
|
||||||
local new_component = ...
|
local new_component = ...
|
||||||
if new_component == nil then new_component = true end
|
|
||||||
|
if new_component == nil then
|
||||||
|
new_component = true
|
||||||
|
end
|
||||||
|
|
||||||
new_component_storage[new_place] = new_component
|
new_component_storage[new_place] = new_component
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user