@@ -104,12 +104,12 @@ public void createBlockStateDefinition(StateContainer.Builder<Block, BlockState>
104104 builder .add (HAS_LOCATOR , CARTRIDGE );
105105 }
106106
107- @ Inject (at = @ At ("RETURN" ), method = "getShape" , cancellable = true , remap = false )
107+ @ Inject (at = @ At ("RETURN" ), method = "getShape" , cancellable = true )
108108 public void getShape (final BlockState state , final IBlockReader world , final BlockPos pos , final ISelectionContext context , final CallbackInfoReturnable <VoxelShape > ci ) {
109109 if (state .getValue (HAS_LOCATOR )) ci .setReturnValue (VoxelShapes .or (ci .getReturnValue (), getAddonShape (state )));
110110 }
111111
112- @ Inject (at = @ At ("HEAD" ), method = "use" , cancellable = true , remap = false )
112+ @ Inject (at = @ At ("HEAD" ), method = "use" , cancellable = true )
113113 public void use (final BlockState state , final World world , final BlockPos pos , final PlayerEntity player , final Hand handIn , final BlockRayTraceResult result , final CallbackInfoReturnable <ActionResultType > ci ) {
114114 if (isMouseOnLocator (state , pos , result .getLocation (), world )) {
115115 if (!world .isClientSide ()) {
@@ -154,7 +154,7 @@ public void use(final BlockState state, final World world, final BlockPos pos, f
154154 }
155155 }
156156
157- @ Inject (at = @ At ("TAIL" ), method = "use" , cancellable = false , remap = false )
157+ @ Inject (at = @ At ("TAIL" ), method = "use" , cancellable = false )
158158 public void addToMap (final BlockState state , final World world , final BlockPos pos , final PlayerEntity player , final Hand handIn , final BlockRayTraceResult result , final CallbackInfoReturnable <ActionResultType > ci ) {
159159 StructureHelper .isFlyingWithLocator = state .getValue (HAS_LOCATOR );
160160
0 commit comments