From cb6a758cd49bf60932734c87badaa28a35d91a85 Mon Sep 17 00:00:00 2001 From: Yive Date: Tue, 5 Jan 2016 21:26:36 -0800 Subject: [PATCH] Change to void --- patches/net/minecraft/tileentity/TileEntity.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/net/minecraft/tileentity/TileEntity.java.patch b/patches/net/minecraft/tileentity/TileEntity.java.patch index ef2df42..1fc3eaa 100644 --- a/patches/net/minecraft/tileentity/TileEntity.java.patch +++ b/patches/net/minecraft/tileentity/TileEntity.java.patch @@ -62,7 +62,7 @@ + return this.GC; //Returns true if the chunk it is inside of has marked it for unloading + } + -+ public boolean setGC(boolean state) ++ public void setGC(boolean state) + { + this.GC = state; //Should never be touched by a mod. Would make it package-private but not sure if that would still work + }