Allow players to retain their skins if they disguised as theirselves
This commit is contained in:
parent
5a4ac21f10
commit
3d60fe3c49
6
pom.xml
6
pom.xml
@ -74,9 +74,9 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.7.2-R0.3-SNAPSHOT</version>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.7.8-R0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.comphenix.protocol</groupId>
|
||||
|
@ -300,7 +300,7 @@ public class DisguiseUtilities {
|
||||
}
|
||||
|
||||
public static UUID getUUID() {
|
||||
if (LibVersion.getGameVersion() == LibVersion.V1_7) {
|
||||
if (LibVersion.is1_7()) {
|
||||
EthernetAddress addr = EthernetAddress.fromInterface();
|
||||
TimeBasedGenerator uuidGenerator = Generators.timeBasedGenerator(addr);
|
||||
return uuidGenerator.generate();
|
||||
|
@ -121,7 +121,7 @@ public class PacketsManager {
|
||||
/**
|
||||
* Construct the packets I need to spawn in the disguise
|
||||
*/
|
||||
public static PacketContainer[] constructSpawnPackets(Disguise disguise, Entity disguisedEntity) {
|
||||
public static PacketContainer[] constructSpawnPackets(Disguise disguise, Entity disguisedEntity, Player observer) {
|
||||
if (disguise.getEntity() == null)
|
||||
disguise.setEntity(disguisedEntity);
|
||||
Object nmsEntity = ReflectionManager.getNmsEntity(disguisedEntity);
|
||||
@ -200,8 +200,16 @@ public class PacketsManager {
|
||||
stringMods.write(i, ((PlayerDisguise) disguise).getName());
|
||||
}
|
||||
} else {
|
||||
spawnPackets[0].getModifier().write(1,
|
||||
ReflectionManager.getGameProfile(DisguiseUtilities.getUUID(), ((PlayerDisguise) disguise).getName()));
|
||||
Object gameProfile = null;
|
||||
if (disguisedEntity instanceof Player
|
||||
&& ((Player) disguisedEntity).getName().equals(((PlayerDisguise) disguise).getName())
|
||||
&& disguisedEntity != observer) {
|
||||
gameProfile = ReflectionManager.getGameProfile((Player) disguisedEntity);
|
||||
} else {
|
||||
gameProfile = ReflectionManager.getGameProfile(DisguiseUtilities.getUUID(),
|
||||
((PlayerDisguise) disguise).getName());
|
||||
}
|
||||
spawnPackets[0].getModifier().write(1, gameProfile);
|
||||
}
|
||||
StructureModifier<Integer> intMods = spawnPackets[0].getIntegers();
|
||||
intMods.write(0, disguisedEntity.getEntityId());
|
||||
@ -1137,7 +1145,7 @@ public class PacketsManager {
|
||||
|| sentPacket.getType() == PacketType.Play.Server.SPAWN_ENTITY_EXPERIENCE_ORB
|
||||
|| sentPacket.getType() == PacketType.Play.Server.SPAWN_ENTITY
|
||||
|| sentPacket.getType() == PacketType.Play.Server.SPAWN_ENTITY_PAINTING) {
|
||||
packets = constructSpawnPackets(disguise, entity);
|
||||
packets = constructSpawnPackets(disguise, entity, observer);
|
||||
}
|
||||
|
||||
// Else if the disguise is attempting to send players a forbidden packet
|
||||
|
@ -16,14 +16,18 @@ import org.bukkit.inventory.ItemStack;
|
||||
|
||||
public class ReflectionManager {
|
||||
public enum LibVersion {
|
||||
V1_6, V1_7;
|
||||
V1_6, V1_7, V1_7_3;
|
||||
private static LibVersion currentVersion;
|
||||
static {
|
||||
if (getBukkitVersion().startsWith("v1_")) {
|
||||
try {
|
||||
int version = Integer.parseInt(getBukkitVersion().split("_")[1]);
|
||||
if (version == 7) {
|
||||
if (Integer.parseInt(getBukkitVersion().split("_")[1]) < 3) {
|
||||
currentVersion = LibVersion.V1_7;
|
||||
} else {
|
||||
currentVersion = LibVersion.V1_7_3;
|
||||
}
|
||||
} else {
|
||||
if (version < 7) {
|
||||
currentVersion = LibVersion.V1_6;
|
||||
@ -32,7 +36,7 @@ public class ReflectionManager {
|
||||
}
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -46,7 +50,11 @@ public class ReflectionManager {
|
||||
}
|
||||
|
||||
public static boolean is1_7() {
|
||||
return getGameVersion() == V1_7;
|
||||
return getGameVersion() == V1_7 || getGameVersion() == V1_7_3;
|
||||
}
|
||||
|
||||
public static boolean is1_7_3() {
|
||||
return getGameVersion() == V1_7_3;
|
||||
}
|
||||
}
|
||||
|
||||
@ -206,6 +214,17 @@ public class ReflectionManager {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static Object getGameProfile(Player player) {
|
||||
if (LibVersion.is1_7_3()) {
|
||||
try {
|
||||
return getNmsClass("EntityHuman").getMethod("getProfile").invoke(getNmsEntity(player));
|
||||
} catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static Object getGameProfile(UUID uuid, String playerName) {
|
||||
try {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user