PlayerInteract.java: Remove dead code

This commit is contained in:
kaboom 2022-08-08 02:39:16 +03:00
parent 5780f1a4a6
commit 1ebcae5e0c
1 changed files with 0 additions and 8 deletions

View File

@ -48,13 +48,5 @@ public final class PlayerInteract implements Listener {
item.addUnsafeEnchantment(Enchantment.RIPTIDE, riptideLimit);
}
}
if (event.getAction() == Action.RIGHT_CLICK_BLOCK) {
final BlockState clickedBlock = event.getClickedBlock().getState();
if (clickedBlock instanceof Sign) {
clickedBlock.update();
}
}
}
}