blob: 7e76a9c14d8fe902478b2e392c045879bf852072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package common.tileentities;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class TE_SpaceElevatorTether extends TileEntity {
@SideOnly(Side.CLIENT)
@Override
public double getMaxRenderDistanceSquared() {
// 4k is standard, 65k is what the vanilla beacon uses
return 65536.0D;
}
@Override
@SideOnly(Side.CLIENT)
public AxisAlignedBB getRenderBoundingBox() {
// Make it so the beam is still rendered even when the source block is out of sight
return INFINITE_EXTENT_AABB;
}
}
|