Fixed Detector hitbox

This commit is contained in:
Raoul Van den Berge
2016-09-29 21:57:00 +02:00
parent 92d820c16f
commit ac81b24261
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
- It is now possible to start a crafting task even if the crafting preview says you can't (raoulvdberge)
- Fixed crash when changing screens in autocrafting (raoulvdberge)
- Fixed autocrafting getting stuck with processing patterns (raoulvdberge)
- Fixed Detector hitbox (raoulvdberge)
### 1.1.1
- Fixed crash on servers (raoulvdberge)

View File

@@ -18,7 +18,7 @@ import refinedstorage.RefinedStorageGui;
import refinedstorage.tile.TileDetector;
public class BlockDetector extends BlockNode {
private static final AxisAlignedBB AABB_DETECTOR = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 4D / 16D, 1.0D);
private static final AxisAlignedBB AABB_DETECTOR = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 5D / 16D, 1.0D);
private static final PropertyBool POWERED = PropertyBool.create("powered");