This commit is contained in:
raoulvdberge
2017-02-22 13:57:47 +01:00
parent 8fa00e5872
commit 665be14de4
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
# Refined Storage Changelog
### 1.4.2
- Added integration for MCMultiPart, this is an optional dependency (raoulvdberge)
- Fixed a crash with the Constructor (raoulvdberge)
### 1.4.1
- Added Storage Monitor (raoulvdberge)
- Fixed Processing Pattern Encoder and Security Manager recipes not supporting oredict workbench and chest (VT-14)

View File

@@ -140,7 +140,7 @@ public class NetworkNodeConstructor extends NetworkNode implements IComparable,
}
private boolean canPlace(BlockPos pos, IBlockState state) {
BlockEvent.PlaceEvent e = new BlockEvent.PlaceEvent(new BlockSnapshot(holder.world(), pos, state), holder.world().getBlockState(holder.pos()), FakePlayerFactory.getMinecraft((WorldServer) holder.world()), null);
BlockEvent.PlaceEvent e = new BlockEvent.PlaceEvent(new BlockSnapshot(holder.world(), pos, state), holder.world().getBlockState(holder.pos()), FakePlayerFactory.getMinecraft((WorldServer) holder.world()), EnumHand.MAIN_HAND);
return !MinecraftForge.EVENT_BUS.post(e);
}