Fix small derp in TE

This commit is contained in:
Christian 2013-01-31 13:46:29 -05:00
parent 0f3bd780e1
commit fb46c7a01f

View file

@ -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);
+
+ /**