Browse Source

Move comments

master
Yive 9 years ago
parent
commit
76a102b282
  1. 10
      patches/net/minecraft/tileentity/TileEntity.java.patch

10
patches/net/minecraft/tileentity/TileEntity.java.patch

@ -57,14 +57,14 @@
+ } + }
+ // CraftBukkit end + // CraftBukkit end
+ //KCauldron start + //KCauldron start
+ public boolean isGC() //Returns true if the chunk it is inside of has marked it for unloading + public boolean isGC()
+ { + {
+ return this.GC; + 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 + // KCauldron end
+ +

Loading…
Cancel
Save