Commits
Adam Thomas authored and md_5 committed 23759bcb40c
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 + | } |