[SPIGOT-2341] Bukkit Scoreboard blocks Mob Color Glowing Created: 01/Jun/16 Updated: 08/Jun/20 Resolved: 16/Dec/16 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | essem | Assignee: | Unassigned |
Resolution: | Invalid | Votes: | 0 |
Labels: | 1.9, bug, bukkit, spigot |
Attachments: |
![]() ![]() |
Description |
Description: If you create a Scoreboard with ScoreboardManager#get*New*Scoreboard() and you want to color mob ingame with a normal ingame scoreboard and glowing effect it will not shown. Commands for the ingame-scoreboard: package de.devpixel.tests; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerJoinEvent; import org.bukkit.plugin.Plugin; import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.scoreboard.Scoreboard; import org.bukkit.scoreboard.Team; import org.bukkit.scoreboard.Team.Option; import org.bukkit.scoreboard.Team.OptionStatus; public class main extends JavaPlugin implements Listener { private static Plugin plugin; private static Scoreboard scoreboard; @Override public void onEnable() { plugin = this; Bukkit.getPluginManager().registerEvents(this, this); scoreboard = Bukkit.getScoreboardManager().getNewScoreboard(); Team team = scoreboard.registerNewTeam("myteam"); team.setPrefix("§c"); team.setAllowFriendlyFire(true); team.setCanSeeFriendlyInvisibles(false); team.setDisplayName("MyTeam"); team.setOption(Option.NAME_TAG_VISIBILITY, OptionStatus.ALWAYS); team.setOption(Option.COLLISION_RULE, OptionStatus.NEVER); } public void onDisable() { } public static Plugin getPlugin() { return plugin; } @EventHandler public void onJoin(PlayerJoinEvent e) { scoreboard.getTeam("myteam").addEntry(e.getPlayer().getName()); for(Player online : Bukkit.getOnlinePlayers()) { online.setScoreboard(scoreboard); } } } |
Comments |
Comment by CsH [ 08/Jun/20 ] |
Hey essem, I have some issues I was wondering if you could help me with. If you could help me out I would really appreciate it! I might not see your response on this website, but if you could please add me on discord - CsH#7612 or send me your discord I would really appreciate it! I mean if you don't have discord that's fine, but could you reply to this message so I know? Thanks again
|
Comment by md_5 [ 16/Dec/16 ] |
As stated, a player can only have one scoreboard, and you are replacing their scoreboard with a custom one. |
Comment by Jikoo [ 12/Jun/16 ] |
The issue that you're encountering is that you're making a new scoreboard. Minecraft's commands only affect the main scoreboard (ScoreboardManager#getMainScoreboard()) so naturally, your shulker team is not present in your new instance. A player can only have one Scoreboard set, so as soon as you change a Player off of the main scoreboard, its details will not be shown to them. Add your shulker team to your new Scoreboard or use the main scoreboard. |
Comment by essem [ 09/Jun/16 ] |
@Martin Benndorf your are wrong, you can set the color with setprefix and this is not the point of this bugreport. the bug is that the vanilla scoreboard color for mobs no longer work if you use the bukkit scoreboard |
Comment by Martin | MiniDigger [ 09/Jun/16 ] |
you never changed to color of the scoreboard team (because there is no api for that) |