Fixes #1008
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Refined Storage Changelog
|
# 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
|
### 1.4.1
|
||||||
- Added Storage Monitor (raoulvdberge)
|
- Added Storage Monitor (raoulvdberge)
|
||||||
- Fixed Processing Pattern Encoder and Security Manager recipes not supporting oredict workbench and chest (VT-14)
|
- Fixed Processing Pattern Encoder and Security Manager recipes not supporting oredict workbench and chest (VT-14)
|
||||||
|
@@ -140,7 +140,7 @@ public class NetworkNodeConstructor extends NetworkNode implements IComparable,
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean canPlace(BlockPos pos, IBlockState state) {
|
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);
|
return !MinecraftForge.EVENT_BUS.post(e);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user