blob: a098771f2e90d79c52e5ae9f49efe25c99ba16d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package common.tileentities;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
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;
}
}
|