diff --git a/Levels/Level.Blocks.cs b/Levels/Level.Blocks.cs index 224261f37..54ff4b4aa 100644 --- a/Levels/Level.Blocks.cs +++ b/Levels/Level.Blocks.cs @@ -89,6 +89,7 @@ namespace MCGalaxy { public void SetTile(int b, byte type) { if (blocks == null || b < 0 || b >= blocks.Length) return; blocks[b] = type; + changed = true; } public void SetTile(ushort x, ushort y, ushort z, byte type) { @@ -132,6 +133,7 @@ namespace MCGalaxy { byte oldType = blocks[b]; blocks[b] = type; byte oldExtType = 0; + changed = true; if (oldType == Block.custom_block) { oldExtType = GetExtTile(x, y, z);