Commits

Adam Thomas authored and md_5 committed 23759bcb40c
Add NameTag visibility API to the Team interface.
No tags

src/main/java/org/bukkit/scoreboard/NameTagVisibility.java

Added
1 +package org.bukkit.scoreboard;
2 +
3 +public enum NameTagVisibility {
4 +
5 + /**
6 + * Always show the player's nametag.
7 + */
8 + ALWAYS,
9 + /**
10 + * Never show the player's nametag.
11 + */
12 + NEVER,
13 + /**
14 + * Show the player's nametag only to his own team members.
15 + */
16 + HIDE_FOR_OTHER_TEAMS,
17 + /**
18 + * Show the player's nametag only to members of other teams.
19 + */
20 + HIDE_FOR_OWN_TEAM;
21 +}

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut