Skip to content

Commit

Permalink
Extra placeholder value for combat status
Browse files Browse the repository at this point in the history
  • Loading branch information
Esophose committed Feb 12, 2020
1 parent 330b2a8 commit 13686f7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public String onPlaceholderRequest(Player p, String placeholder) {
return String.valueOf(pplayer.getFixedParticles().size());
case "is_moving":
return String.valueOf(pplayer.isMoving());
case "is_in_combat":
return String.valueOf(pplayer.isInCombat());
case "can_see_particles":
return String.valueOf(pplayer.canSeeParticles());
}
Expand Down

0 comments on commit 13686f7

Please sign in to comment.