From 9a8d38f5da0558004de421bc12f77f3dd84e7681 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 5 May 2016 16:58:05 +0200 Subject: [PATCH] I don't know why this was even here --- .../actuallyadditions/mod/blocks/BlockPhantom.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockPhantom.java b/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockPhantom.java index 03cbb574e..67a3035d6 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockPhantom.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockPhantom.java @@ -41,7 +41,6 @@ import net.minecraftforge.fml.relauncher.SideOnly; public class BlockPhantom extends BlockContainerBase implements IHudDisplay{ public Type type; - public int range; public BlockPhantom(Type type, String name){ super(Material.ROCK, name); @@ -50,13 +49,6 @@ public class BlockPhantom extends BlockContainerBase implements IHudDisplay{ this.setHardness(4.5F); this.setResistance(10.0F); this.setSoundType(SoundType.STONE); - - if(type == Type.FACE || type == Type.LIQUIFACE || type == Type.ENERGYFACE){ - this.range = TileEntityPhantomface.RANGE; - } - else if(type == Type.BREAKER || type == Type.PLACER){ - this.range = TileEntityPhantomPlacer.RANGE; - } } @Override