diff --git a/src/main/java/com/hbm/entity/item/EntityMovingConveyorObject.java b/src/main/java/com/hbm/entity/item/EntityMovingConveyorObject.java index b13accbae..228c8230a 100644 --- a/src/main/java/com/hbm/entity/item/EntityMovingConveyorObject.java +++ b/src/main/java/com/hbm/entity/item/EntityMovingConveyorObject.java @@ -1,7 +1,5 @@ package com.hbm.entity.item; -import com.hbm.blocks.network.BlockConveyorDouble; -import com.hbm.blocks.network.BlockConveyorTriple; import com.hbm.lib.Library; import com.hbm.util.fauxpointtwelve.BlockPos; @@ -150,11 +148,7 @@ public abstract class EntityMovingConveyorObject extends Entity { public abstract boolean onLeaveConveyor(); public double getMoveSpeed() { - double speed = 0.0625D; // this worked first try - Block b = worldObj.getBlock((int) Math.floor(posX), (int) Math.floor(posY), (int) Math.floor(posZ)); - if (b.getClass().equals(BlockConveyorDouble.class)) return speed * 2; - else if (b.getClass().equals(BlockConveyorTriple.class)) return speed * 2.75; - else return speed; + return 0.0625D; } @SideOnly(Side.CLIENT) diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_double.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_double.png index 6d773232d..aa49e18c8 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_double.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_double.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_left.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_left.png index fe59acfe2..f5f4c4a8c 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_left.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_left.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_right.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_right.png index 2ea981a71..fafd8b190 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_right.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_double_curve_right.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple.png index e7556a856..cb948832b 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_left.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_left.png index ab4fda3be..f6411e3c5 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_left.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_left.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_right.png b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_right.png index 785054901..4c32e96e5 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_right.png and b/src/main/resources/assets/hbm/textures/blocks/conveyor_triple_curve_right.png differ