mark the underlying chunk of aura chunks dirty so that they don't forget to save if something changes

This commit is contained in:
Ellpeck 2019-02-09 18:47:20 +01:00
parent 13fd338ad3
commit 58169599e6

View file

@ -145,6 +145,7 @@ public class AuraChunk implements IAuraChunk {
@Override
public void markDirty() {
this.chunk.markDirty();
this.needsSync = true;
}