fix(grid): clear cached entries on change

This commit is contained in:
Linden
2025-03-10 16:28:23 +11:00
parent caa9ed1d97
commit 5a18b7e2d5

View File

@@ -144,6 +144,8 @@ function lib.grid.addEntry(entry)
end end
grid[y] = row grid[y] = row
table.wipe(lastNearbyEntries)
end end
end end
@@ -182,6 +184,8 @@ function lib.grid.removeEntry(entry)
::continue:: ::continue::
end end
table.wipe(lastNearbyEntries)
return success return success
end end