Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyfts committed Apr 17, 2024
1 parent 3e0cfc0 commit e7714e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer p
if (tileEntity instanceof TileEntityHowlerAlarm tileHowler) {
if (player.getCurrentEquippedItem() != null && DyeUtil.isADye(player.getCurrentEquippedItem())) {
int dyeId = DyeUtil.getDyeId(player.getCurrentEquippedItem());
if(dyeId >= 0){
if (dyeId >= 0) {
tileHowler.setColor(ItemDye.field_150922_c[dyeId]);
world.markBlockForUpdate(x, y, z);
if (!player.capabilities.isCreativeMode) {
Expand Down

0 comments on commit e7714e0

Please sign in to comment.