fixed element leak across chunks

This commit is contained in:
2025-04-30 23:23:20 +02:00
parent 0b97027e00
commit 4462573267
2 changed files with 4 additions and 1 deletions

View File

@@ -138,6 +138,9 @@ public class Chunk {
if (what.Chunk != swapTo.Chunk) {
what.Chunk.RemoveFromChunk(what);
swapTo.Chunk.AddToChunk(what);
swapTo.Chunk.RemoveFromChunk(swapTo);
what.Chunk.AddToChunk(swapTo);
}
Element temp = new Element(what);