Search results

  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 =...