Change getDisplayName() to getPlayerListName()
This commit is contained in:
		| @@ -530,7 +530,7 @@ public abstract class Disguise { | |||||||
|                         deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( |                         deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( | ||||||
|                                 new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, |                                 new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, | ||||||
|                                         NativeGameMode.SURVIVAL, |                                         NativeGameMode.SURVIVAL, | ||||||
|                                         WrappedChatComponent.fromText(((Player) getEntity()).getDisplayName())))); |                                         WrappedChatComponent.fromText(((Player) getEntity()).getPlayerListName())))); | ||||||
|  |  | ||||||
|                         try { |                         try { | ||||||
|                             for (Player player : Bukkit.getOnlinePlayers()) { |                             for (Player player : Bukkit.getOnlinePlayers()) { | ||||||
|   | |||||||
| @@ -1,14 +1,5 @@ | |||||||
| package me.libraryaddict.disguise.disguisetypes; | package me.libraryaddict.disguise.disguisetypes; | ||||||
|  |  | ||||||
| import java.lang.reflect.InvocationTargetException; |  | ||||||
| import java.util.ArrayList; |  | ||||||
| import java.util.Arrays; |  | ||||||
| import java.util.Collections; |  | ||||||
| import java.util.List; |  | ||||||
|  |  | ||||||
| import org.bukkit.Bukkit; |  | ||||||
| import org.bukkit.entity.Player; |  | ||||||
|  |  | ||||||
| import com.comphenix.protocol.PacketType; | import com.comphenix.protocol.PacketType; | ||||||
| import com.comphenix.protocol.ProtocolLibrary; | import com.comphenix.protocol.ProtocolLibrary; | ||||||
| import com.comphenix.protocol.events.PacketContainer; | import com.comphenix.protocol.events.PacketContainer; | ||||||
| @@ -16,10 +7,17 @@ import com.comphenix.protocol.wrappers.EnumWrappers.NativeGameMode; | |||||||
| import com.comphenix.protocol.wrappers.EnumWrappers.PlayerInfoAction; | import com.comphenix.protocol.wrappers.EnumWrappers.PlayerInfoAction; | ||||||
| import com.comphenix.protocol.wrappers.PlayerInfoData; | import com.comphenix.protocol.wrappers.PlayerInfoData; | ||||||
| import com.comphenix.protocol.wrappers.WrappedChatComponent; | import com.comphenix.protocol.wrappers.WrappedChatComponent; | ||||||
|  |  | ||||||
| import me.libraryaddict.disguise.DisguiseAPI; | import me.libraryaddict.disguise.DisguiseAPI; | ||||||
| import me.libraryaddict.disguise.utilities.DisguiseUtilities; | import me.libraryaddict.disguise.utilities.DisguiseUtilities; | ||||||
| import me.libraryaddict.disguise.utilities.ReflectionManager; | import me.libraryaddict.disguise.utilities.ReflectionManager; | ||||||
|  | import org.bukkit.Bukkit; | ||||||
|  | import org.bukkit.entity.Player; | ||||||
|  |  | ||||||
|  | import java.lang.reflect.InvocationTargetException; | ||||||
|  | import java.util.ArrayList; | ||||||
|  | import java.util.Arrays; | ||||||
|  | import java.util.Collections; | ||||||
|  | import java.util.List; | ||||||
|  |  | ||||||
| public abstract class TargetedDisguise extends Disguise { | public abstract class TargetedDisguise extends Disguise { | ||||||
|  |  | ||||||
| @@ -28,7 +26,8 @@ public abstract class TargetedDisguise extends Disguise { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     public enum TargetType { |     public enum TargetType { | ||||||
|         HIDE_DISGUISE_TO_EVERYONE_BUT_THESE_PLAYERS, SHOW_TO_EVERYONE_BUT_THESE_PLAYERS |         HIDE_DISGUISE_TO_EVERYONE_BUT_THESE_PLAYERS, | ||||||
|  |         SHOW_TO_EVERYONE_BUT_THESE_PLAYERS | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     private ArrayList<String> disguiseViewers = new ArrayList<>(); |     private ArrayList<String> disguiseViewers = new ArrayList<>(); | ||||||
| @@ -59,8 +58,8 @@ public abstract class TargetedDisguise extends Disguise { | |||||||
|                                     canSee(player) ? PlayerInfoAction.REMOVE_PLAYER : PlayerInfoAction.ADD_PLAYER); |                                     canSee(player) ? PlayerInfoAction.REMOVE_PLAYER : PlayerInfoAction.ADD_PLAYER); | ||||||
|                             deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( |                             deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( | ||||||
|                                     new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, |                                     new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, | ||||||
|                                             NativeGameMode.SURVIVAL, |                                             NativeGameMode.SURVIVAL, WrappedChatComponent | ||||||
|                                             WrappedChatComponent.fromText(((Player) getEntity()).getDisplayName())))); |                                             .fromText(((Player) getEntity()).getPlayerListName())))); | ||||||
|  |  | ||||||
|                             ProtocolLibrary.getProtocolManager().sendServerPacket(player, deleteTab); |                             ProtocolLibrary.getProtocolManager().sendServerPacket(player, deleteTab); | ||||||
|                         } |                         } | ||||||
| @@ -122,8 +121,8 @@ public abstract class TargetedDisguise extends Disguise { | |||||||
|                                     canSee(player) ? PlayerInfoAction.ADD_PLAYER : PlayerInfoAction.REMOVE_PLAYER); |                                     canSee(player) ? PlayerInfoAction.ADD_PLAYER : PlayerInfoAction.REMOVE_PLAYER); | ||||||
|                             deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( |                             deleteTab.getPlayerInfoDataLists().write(0, Arrays.asList( | ||||||
|                                     new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, |                                     new PlayerInfoData(ReflectionManager.getGameProfile((Player) getEntity()), 0, | ||||||
|                                             NativeGameMode.SURVIVAL, |                                             NativeGameMode.SURVIVAL, WrappedChatComponent | ||||||
|                                             WrappedChatComponent.fromText(((Player) getEntity()).getDisplayName())))); |                                             .fromText(((Player) getEntity()).getPlayerListName())))); | ||||||
|  |  | ||||||
|                             ProtocolLibrary.getProtocolManager().sendServerPacket(player, deleteTab); |                             ProtocolLibrary.getProtocolManager().sendServerPacket(player, deleteTab); | ||||||
|                         } |                         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user