@Override
  public void onTick(Minecraft minecraft, float partialTicks, boolean inGame, boolean clock) {
    if (inGame && minecraft.currentScreen == null) {
      if (LiteModExample.toggleJumpKeybinding.isPressed()) {
        Minecraft.getMinecraft().gameSettings.autoJump =
            !Minecraft.getMinecraft().gameSettings.autoJump;

        ITextComponent message = new TextComponentString("");
        ITextComponent prefix = new TextComponentString("[ToggleJump] ");
        prefix.setStyle(new Style().setColor(TextFormatting.GOLD));

        ITextComponent text;

        if (Minecraft.getMinecraft().gameSettings.autoJump) {
          text = new TextComponentString("Auto jump is now enabled");
        } else {
          text = new TextComponentString("Auto jump is now disabled");
        }

        message.appendSibling(prefix);
        message.appendSibling(text);
        Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessage(message);
      }
    }
  }