just_lofe
just_lofe
@KosmX Is it possible to use emote on org.bukkit.Entity#NPC?
UP @KosmX
+, it makes spectator mode dont working at all. i developed my own plugin which implements tab also with TabListEntry.builder(), but this bug creates really weird problems. https://github.com/user-attachments/assets/efa53339-5675-4bc6-a91b-d7de6d1f249c
I'm also tried to present a gamemode through plugin messaging (when player changes gamemode, it updates), but it didn't give a result. It fully broken.
> If you set the gamemode to -1 it will not be sent Still broken
Client: 1.21 Velocity: latest It updates every second for all players. ```java private void update(Player player) { TabList list = player.getTabList(); player.sendPlayerListHeaderAndFooter( headerFooter("header", player), headerFooter("footer", player) ); list.clearAll(); list.addEntries(entries(list)); }...
> Oh yes, because you delete all entries beforehand and no game mode is sent along, it automatically takes game mode `0`. So I have two options here that should...