diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2016-12-13 20:10:30 +0100 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2016-12-13 20:10:30 +0100 |
commit | 1efd486dbbcf755f9c366e19222a89c7848a4264 (patch) | |
tree | 6ab98a20c3bff566cc61cd660684c4bab77d5494 | |
parent | f86fce4cf372f49648764785f1bac6fad05f455d (diff) | |
download | GT5-Unofficial-1efd486dbbcf755f9c366e19222a89c7848a4264.tar.gz GT5-Unofficial-1efd486dbbcf755f9c366e19222a89c7848a4264.tar.bz2 GT5-Unofficial-1efd486dbbcf755f9c366e19222a89c7848a4264.zip |
Disable markDirty function of TileEntitys
http://forum.industrial-craft.net/index.php?page=Thread&postID=205162#post205162
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/BaseTileEntity.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/BaseTileEntity.java b/src/main/java/gregtech/api/metatileentity/BaseTileEntity.java index f60c24b23a..02f18ecaec 100644 --- a/src/main/java/gregtech/api/metatileentity/BaseTileEntity.java +++ b/src/main/java/gregtech/api/metatileentity/BaseTileEntity.java @@ -434,4 +434,7 @@ public abstract class BaseTileEntity extends TileEntity implements IHasWorldObje public final void setToFire() { worldObj.setBlock(xCoord, yCoord, zCoord, Blocks.fire); } + + @Override + public void markDirty() {/* Do not do the super Function */} }
\ No newline at end of file |