Recent content by TozyDev

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. TozyDev

    Solved "When clicking on a player head, the menu doesn't open.

    strippedTitle.equals(ChatColor.DARK_RED.toString() + "Choose Player to ban", ignoreCase = true) always returns false. Because when you strip color from the title, you don't need to add color when checking it. Ref...
  2. TozyDev

    Solved "When clicking on a player head, the menu doesn't open.

    Do you register BanGuiListener Ref: PluginManager.registerEvents
  3. TozyDev

    Question AsyncChatEvent Replace Content

    You can try TextReplacementConfig.Builder#matchLiteral(String) instead of #match(Pattern)