evolved.chunk creates chunks now

This commit is contained in:
BlackMATov
2025-01-08 04:12:04 +07:00
parent e70781d463
commit 6012d41603
2 changed files with 18 additions and 47 deletions
+5 -7
View File
@@ -614,13 +614,11 @@ do
end
do
local chunk, entities = evo.chunk(f1, f2, f3)
assert(not chunk and not entities)
end
do
local chunk, entities = evo.chunk(f3, f2, f1)
assert(not chunk and not entities)
local chunk123, entities123 = evo.chunk(f1, f2, f3)
local chunk321, entities321 = evo.chunk(f3, f2, f1)
assert(chunk123 and #entities123 == 0)
assert(chunk321 and #entities321 == 0)
assert(chunk123 == chunk321 and entities123 == entities321)
end
end