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 f3fa412..01d3615 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 @@ -77,6 +77,8 @@ public class Window extends HorizontalBlock { @Override public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + player.sendMessage(new StringTextComponent("Block activated"), player.getUniqueID()); + if (!worldIn.isRemote()) { if (!player.isCrouching()) { MinecraftServer server = worldIn.getServer();