Shift clicking on placing Constructor and Destructor will have opposite direction
This commit is contained in:
		| @@ -1,5 +1,9 @@ | ||||
| # Refined Storage Changelog | ||||
|  | ||||
| ### 0.6 | ||||
| **Features** | ||||
| - Shift clicking on placing Constructor and Destructor will have opposite direction | ||||
|  | ||||
| ### 0.5.3 | ||||
| **Bugfixes** | ||||
| - Fixed not being able to open a Grid that is 256 blocks away from the Controller | ||||
|   | ||||
| @@ -108,7 +108,7 @@ public abstract class BlockBase extends Block { | ||||
|         if (tile instanceof TileBase) { | ||||
|             EnumFacing facing = BlockPistonBase.getFacingFromEntity(pos, player); | ||||
|  | ||||
|             if (player.isSneaking() && (blockPlaced == RefinedStorageBlocks.IMPORTER || blockPlaced == RefinedStorageBlocks.EXPORTER || blockPlaced == RefinedStorageBlocks.EXTERNAL_STORAGE)) { | ||||
|             if (player.isSneaking() && (blockPlaced == RefinedStorageBlocks.IMPORTER || blockPlaced == RefinedStorageBlocks.EXPORTER || blockPlaced == RefinedStorageBlocks.EXTERNAL_STORAGE || blockPlaced == RefinedStorageBlocks.CONSTRUCTOR || blockPlaced == RefinedStorageBlocks.DESTRUCTOR)) { | ||||
|                 facing = facing.getOpposite(); | ||||
|             } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Raoul Van den Berge
					Raoul Van den Berge