Skip to content

Commit 2e63d8a

Browse files
committed
Bugfix right clicking the field projector block "placing" items
1 parent 49b38a0 commit 2e63d8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/robotgryphon/compactcrafting/blocks/FieldProjectorBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public TileEntity createTileEntity(BlockState state, IBlockReader world) {
7878
@Override
7979
public ActionResultType onBlockActivated(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) {
8080
if(world.isRemote)
81-
return ActionResultType.PASS;
81+
return ActionResultType.SUCCESS;
8282

8383
FieldProjectorTile tile = (FieldProjectorTile) world.getTileEntity(pos);
8484

0 commit comments

Comments
 (0)