Skip to content

Commit 848b618

Browse files
committed
Fix compilation error introduced during last merge
1 parent 6cf8e78 commit 848b618

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/cyclops/cyclopscore/config/configurable/ConfigurableBlockContainer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) {
192192
}
193193

194194
@Override
195-
public boolean removedByPlayer(World world, BlockPos pos, EntityPlayer player, boolean willHarvest) {
195+
public boolean removedByPlayer(IBlockState blockState, World world, BlockPos pos, EntityPlayer player, boolean willHarvest) {
196196
onPreBlockDestroyed(world, pos, player);
197-
return super.removedByPlayer(world, pos, player, willHarvest);
197+
return super.removedByPlayer(blockState, world, pos, player, willHarvest);
198198
}
199199

200200
@Override

0 commit comments

Comments
 (0)