From f465758bfd8b44d2256d24db2a9072ad9ea6eb67 Mon Sep 17 00:00:00 2001 From: George Paton Date: Mon, 31 Mar 2025 18:27:25 +1100 Subject: [PATCH] whoops that was meant to be _client side_ --- src/main/java/com/hbm/items/tool/ItemConveyorWand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/hbm/items/tool/ItemConveyorWand.java b/src/main/java/com/hbm/items/tool/ItemConveyorWand.java index 0cee2401a..f2174c594 100644 --- a/src/main/java/com/hbm/items/tool/ItemConveyorWand.java +++ b/src/main/java/com/hbm/items/tool/ItemConveyorWand.java @@ -234,7 +234,7 @@ public class ItemConveyorWand extends Item { ItemStack held = player.getHeldItem(); if(held == null || held.getItem() != this || held.getItemDamage() != stack.getItemDamage()) { stack.stackTagCompound = null; - if(!world.isRemote) { + if(world.isRemote) { RenderOverhead.clearActionPreview(); lastMop = null; } @@ -242,7 +242,7 @@ public class ItemConveyorWand extends Item { } // clientside prediction only - if(!world.isRemote && inHand) { + if(world.isRemote && inHand) { if(!stack.hasTagCompound()) { RenderOverhead.clearActionPreview(); lastMop = null;