Fix small derp in TE
This commit is contained in:
parent
0f3bd780e1
commit
fb46c7a01f
1 changed files with 2 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
|||
import net.minecraft.world.World;
|
||||
|
||||
public class TileEntity
|
||||
@@ -296,4 +299,80 @@
|
||||
@@ -296,4 +299,79 @@
|
||||
addMapping(TileEntityBeacon.class, "Beacon");
|
||||
addMapping(TileEntitySkull.class, "Skull");
|
||||
}
|
||||
|
@ -70,9 +70,8 @@
|
|||
+ return pass == 0;
|
||||
+ }
|
||||
+ /**
|
||||
+ * Default render bounding box: infinite in scope. Used to control rendering on {@link TileEntitySpecialRenderer}.
|
||||
+ * Sometimes default render bounding box: infinite in scope. Used to control rendering on {@link TileEntitySpecialRenderer}.
|
||||
+ */
|
||||
+ @SideOnly(Side.CLIENT)
|
||||
+ public static final AxisAlignedBB INFINITE_EXTENT_AABB = AxisAlignedBB.getBoundingBox(Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY);
|
||||
+
|
||||
+ /**
|
||||
|
|
Loading…
Reference in a new issue