Call markDirty when restoring blocks with TileEntities. (#2807)
This change makes sure the updated tileentity is saved properly within the chunk.
This commit is contained in:
parent
7c6372202e
commit
b53e53dcb7
1 changed files with 2 additions and 0 deletions
|
@ -178,6 +178,7 @@ public class BlockSnapshot implements Serializable
|
|||
if (te != null)
|
||||
{
|
||||
te.readFromNBT(nbt);
|
||||
te.markDirty();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -213,6 +214,7 @@ public class BlockSnapshot implements Serializable
|
|||
if (te != null)
|
||||
{
|
||||
te.readFromNBT(nbt);
|
||||
te.markDirty();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue