From 76a102b2827c047ff6db6b7ffaaf0aa4f68df0d4 Mon Sep 17 00:00:00 2001 From: Yive Date: Tue, 5 Jan 2016 21:09:41 -0800 Subject: [PATCH] Move comments --- patches/net/minecraft/tileentity/TileEntity.java.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/patches/net/minecraft/tileentity/TileEntity.java.patch b/patches/net/minecraft/tileentity/TileEntity.java.patch index c8e3676..ef2df42 100644 --- a/patches/net/minecraft/tileentity/TileEntity.java.patch +++ b/patches/net/minecraft/tileentity/TileEntity.java.patch @@ -57,14 +57,14 @@ + } + // CraftBukkit end + //KCauldron start -+ public boolean isGC() //Returns true if the chunk it is inside of has marked it for unloading -+ { -+ return this.GC; ++ public boolean isGC() ++ { ++ return this.GC; //Returns true if the chunk it is inside of has marked it for unloading + } + -+ public boolean setGC(boolean state) //Should never be touched by a mod. Would make it package-private but not sure if that would still work ++ public boolean setGC(boolean state) + { -+ this.GC = state; ++ this.GC = state; //Should never be touched by a mod. Would make it package-private but not sure if that would still work + } + // KCauldron end +