diff --git a/src/main/java/us/minecraftchest2/hdm_mod/block/custom/Window.java b/src/main/java/us/minecraftchest2/hdm_mod/block/custom/Window.java index 8c14d56..d775c0c 100644 --- a/src/main/java/us/minecraftchest2/hdm_mod/block/custom/Window.java +++ b/src/main/java/us/minecraftchest2/hdm_mod/block/custom/Window.java @@ -104,6 +104,7 @@ public class Window extends HorizontalBlock { String message = "blockActivated"; ITextComponent msg = new StringTextComponent(message); player.sendMessage(msg, player.getUniqueID()); + player.sendStatusMessage(new StringTextComponent("Client: Block activated!"), true); if (!worldIn.isRemote()) return super.onBlockActivated(state, worldIn, pos, player, handIn, hit); if (player.isCrouching()) return super.onBlockActivated(state, worldIn, pos, player, handIn, hit);