[SPIGOT-7143] Scoreboard Name Tag Visibility Does Nothing Created: 23/Aug/22  Updated: 25/Dec/24

Status: Open
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: Bug Priority: Minor
Reporter: Benny Conn Assignee: Unassigned
Resolution: Unresolved Votes: 0
Labels: Craftbukkit, scoreboard, spigot, teams
Environment:

OS: macOS


Version: This server is running CraftBukkit version 3575-Spigot-450dcaa-370eece (MC: 1.19.2) (Implementing API Version 1.19.2-R0.1-SNAPSHOT)
Guidelines Read: Yes

 Description   

Player name tag hiding using scoreboard team options does not work in version 1.19.2. The most recent version I could get it to work in was 1.17.1. 

Here is the code for creating a scoreboard team and having that team hide nameplates for a given player: (kotlin)

val scoreboard = Bukkit.getScoreboardManager()!!.mainScoreboard

var hidden: Team? = scoreboard.getTeam("nhide")
if (hidden == null) {
    hidden = scoreboard.registerNewTeam("nhide")
    hidden.setOption(Team.Option.NAME_TAG_VISIBILITY, Team.OptionStatus.NEVER)
}
hidden.addEntry(player.name) 

Just switching which version the server runs on, without adjusting any code or re-compiling the plugin, will determine whether or not the nameplate is hidden as it should be (1.17.1) or not (1.19.2). 



 Comments   
Comment by Benny Conn [ 23/Aug/22 ]

Updated version using just spigot alone. Same problem.

New /version:

This server is running CraftBukkit version 3575-Spigot-450dcaa-370eece (MC: 1.19.2) (Implementing API Version 1.19.2-R0.1-SNAPSHOT)

Comment by Doc [ 23/Aug/22 ]

Please test this using Spigot server and update the version if the issue persist, your version show you are using Paper.

Generated at Thu Apr 03 16:14:40 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.