Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Merge pull request #1267 from creeper123123321/master
Bossbar fix for delay-switch-until-joingame Velocity branch
Dieser Commit ist enthalten in:
Commit
404bc6725b
@ -102,8 +102,6 @@ public class VelocityServerHandler {
|
||||
|
||||
VelocityStorage storage = user.get(VelocityStorage.class);
|
||||
|
||||
if (storage.getBossbar() == null) storage.saveServerBossBars();
|
||||
|
||||
if (e.getServer() != null) {
|
||||
if (!e.getServer().getServerInfo().getName().equals(storage.getCurrentServer())) {
|
||||
String serverName = e.getServer().getServerInfo().getName();
|
||||
|
@ -8,6 +8,7 @@ import us.myles.ViaVersion.api.data.UserConnection;
|
||||
import us.myles.ViaVersion.util.ReflectionUtil;
|
||||
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
@ -16,7 +17,22 @@ import java.util.UUID;
|
||||
public class VelocityStorage extends StoredObject {
|
||||
private Player player;
|
||||
private String currentServer;
|
||||
private List<UUID> bossbar;
|
||||
private List<UUID> cachedBossbar;
|
||||
private static Method getServerBossBars;
|
||||
private static Class<?> clientPlaySessionHandler;
|
||||
private static Method getMinecraftConnection;
|
||||
|
||||
static {
|
||||
try {
|
||||
clientPlaySessionHandler = Class.forName("com.velocitypowered.proxy.connection.client.ClientPlaySessionHandler");
|
||||
getServerBossBars = clientPlaySessionHandler
|
||||
.getDeclaredMethod("getServerBossBars");
|
||||
getMinecraftConnection = Class.forName("com.velocitypowered.proxy.connection.client.ConnectedPlayer")
|
||||
.getDeclaredMethod("getMinecraftConnection");
|
||||
} catch (NoSuchMethodException | ClassNotFoundException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public VelocityStorage(UserConnection user, Player player) {
|
||||
super(user);
|
||||
@ -24,16 +40,22 @@ public class VelocityStorage extends StoredObject {
|
||||
this.currentServer = "";
|
||||
}
|
||||
|
||||
public void saveServerBossBars() {
|
||||
public List<UUID> getBossbar() {
|
||||
if (cachedBossbar == null) {
|
||||
if (clientPlaySessionHandler == null) return null;
|
||||
if (getServerBossBars == null) return null;
|
||||
if (getMinecraftConnection == null) return null;
|
||||
// Get bossbar list if it's supported
|
||||
try {
|
||||
Object connection = ReflectionUtil.invoke(player, "getMinecraftConnection");
|
||||
Object connection = getMinecraftConnection.invoke(player);
|
||||
Object sessionHandler = ReflectionUtil.invoke(connection, "getSessionHandler");
|
||||
if (sessionHandler.getClass().getSimpleName().contains("Play")) {
|
||||
bossbar = (List<UUID>) ReflectionUtil.invoke(sessionHandler, "getServerBossBars");
|
||||
if (clientPlaySessionHandler.isInstance(sessionHandler)) {
|
||||
cachedBossbar = (List<UUID>) getServerBossBars.invoke(sessionHandler);
|
||||
}
|
||||
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
return cachedBossbar;
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren