mirror of
https://github.com/cnaude/PurpleIRC-spigot.git
synced 2024-11-25 19:45:54 +01:00
Update for MC 194.
This commit is contained in:
parent
243ad85c06
commit
c127d278e3
8
pom.xml
8
pom.xml
@ -110,6 +110,14 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>spigot-194</artifactId>
|
||||||
|
<version>1.9.4</version>
|
||||||
|
<type>jar</type>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- PircBotX -->
|
<!-- PircBotX -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.cnaude.pircbotx</groupId>
|
<groupId>com.cnaude.pircbotx</groupId>
|
||||||
|
@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2015 cnaude
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
package com.cnaude.purpleirc.Utilities;
|
||||||
|
|
||||||
|
import com.comphenix.protocol.events.PacketContainer;
|
||||||
|
import com.comphenix.protocol.wrappers.WrappedGameProfile;
|
||||||
|
import com.google.common.base.Charsets;
|
||||||
|
import com.mojang.authlib.GameProfile;
|
||||||
|
import java.util.UUID;
|
||||||
|
import net.minecraft.server.v1_9_R2.EntityPlayer;
|
||||||
|
import net.minecraft.server.v1_9_R2.MinecraftServer;
|
||||||
|
import net.minecraft.server.v1_9_R2.PacketPlayOutPlayerInfo;
|
||||||
|
import net.minecraft.server.v1_9_R2.PlayerInteractManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Chris Naude
|
||||||
|
*/
|
||||||
|
public class NetPacket_194 {
|
||||||
|
|
||||||
|
public static PacketContainer add(String displayName) {
|
||||||
|
UUID uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + displayName).getBytes(Charsets.UTF_8));
|
||||||
|
EntityPlayer pl = new EntityPlayer(
|
||||||
|
MinecraftServer.getServer(),
|
||||||
|
MinecraftServer.getServer().getWorldServer(0),
|
||||||
|
(GameProfile) (new WrappedGameProfile(uuid, displayName)).getHandle(),
|
||||||
|
new PlayerInteractManager(MinecraftServer.getServer().getWorldServer(0))
|
||||||
|
);
|
||||||
|
PacketPlayOutPlayerInfo pi
|
||||||
|
= new PacketPlayOutPlayerInfo(
|
||||||
|
PacketPlayOutPlayerInfo.EnumPlayerInfoAction.ADD_PLAYER, pl);
|
||||||
|
return PacketContainer.fromPacket(pi);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PacketContainer rem(String displayName) {
|
||||||
|
UUID uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + displayName).getBytes(Charsets.UTF_8));
|
||||||
|
EntityPlayer pl = new EntityPlayer(
|
||||||
|
MinecraftServer.getServer(),
|
||||||
|
MinecraftServer.getServer().getWorldServer(0),
|
||||||
|
(GameProfile) (new WrappedGameProfile(uuid, displayName)).getHandle(),
|
||||||
|
new PlayerInteractManager(MinecraftServer.getServer().getWorldServer(0))
|
||||||
|
);
|
||||||
|
PacketPlayOutPlayerInfo pi
|
||||||
|
= new PacketPlayOutPlayerInfo(
|
||||||
|
PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER, pl);
|
||||||
|
return PacketContainer.fromPacket(pi);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -150,6 +150,17 @@ public class NetPackets {
|
|||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
plugin.logError("tabPacket: " + ex.getMessage());
|
plugin.logError("tabPacket: " + ex.getMessage());
|
||||||
}
|
}
|
||||||
|
} else if (version.contains("MC: 1.9.4")) {
|
||||||
|
try {
|
||||||
|
if (add) {
|
||||||
|
return NetPacket_194.add(displayName);
|
||||||
|
} else {
|
||||||
|
plugin.logDebug("T194: Removing: " + name);
|
||||||
|
return NetPacket_194.rem(displayName);
|
||||||
|
}
|
||||||
|
} catch (Exception ex) {
|
||||||
|
plugin.logError("tabPacket: " + ex.getMessage());
|
||||||
|
}
|
||||||
} else if (version.contains("MC: 1.9")) {
|
} else if (version.contains("MC: 1.9")) {
|
||||||
try {
|
try {
|
||||||
if (add) {
|
if (add) {
|
||||||
|
Loading…
Reference in New Issue
Block a user