Recent content by mmmjjkx

  • 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. M

    Solved PlayerDeathEvent not working

    Oh,it's my problem....
  2. M

    Solved PlayerDeathEvent not working

    yes I register the listener, but it don't work.(it can work on Spigot,but it didn't work on Paper,that's so strange)
  3. M

    Solved PlayerDeathEvent not working

    The PlayerDeathEvent is not working. Here's my code: @EventHandler private void Item(PlayerDeathEvent e){ if(PlayerDeathPenalty.config.getBoolean("item.enabled")) { if(e.getEntity().hasPermission("playerdeathpenalty.bypass")) { return; } Player p =...