Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-04 23:30:24 +01:00
Fix getting connection twice
Dieser Commit ist enthalten in:
Ursprung
bee260e2b4
Commit
bf01c9ea0e
@ -89,12 +89,11 @@ public class BungeeServerHandler implements Listener {
|
|||||||
|
|
||||||
int protocolId = ProtocolDetectorService.getProtocolId(serverName);
|
int protocolId = ProtocolDetectorService.getProtocolId(serverName);
|
||||||
|
|
||||||
UserConnection viaConnection = Via.getManager().getConnection(player.getUniqueId());
|
ProtocolInfo info = user.get(ProtocolInfo.class);
|
||||||
ProtocolInfo info = viaConnection.get(ProtocolInfo.class);
|
|
||||||
// Refresh the pipes
|
// Refresh the pipes
|
||||||
List<Pair<Integer, Protocol>> protocols = ProtocolRegistry.getProtocolPath(info.getProtocolVersion(), protocolId);
|
List<Pair<Integer, Protocol>> protocols = ProtocolRegistry.getProtocolPath(info.getProtocolVersion(), protocolId);
|
||||||
ProtocolPipeline pipeline = viaConnection.get(ProtocolInfo.class).getPipeline();
|
ProtocolPipeline pipeline = user.get(ProtocolInfo.class).getPipeline();
|
||||||
viaConnection.clearStoredObjects();
|
user.clearStoredObjects();
|
||||||
pipeline.cleanPipes();
|
pipeline.cleanPipes();
|
||||||
if (protocols == null) {
|
if (protocols == null) {
|
||||||
// TODO Check Bungee Supported Protocols? *shrugs*
|
// TODO Check Bungee Supported Protocols? *shrugs*
|
||||||
@ -105,14 +104,14 @@ public class BungeeServerHandler implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
viaConnection.put(info);
|
user.put(info);
|
||||||
viaConnection.put(storage);
|
user.put(storage);
|
||||||
|
|
||||||
viaConnection.setActive(protocols != null);
|
user.setActive(protocols != null);
|
||||||
|
|
||||||
// Init all protocols TODO check if this can get moved up to the previous for loop, and doesn't require the pipeline to already exist.
|
// Init all protocols TODO check if this can get moved up to the previous for loop, and doesn't require the pipeline to already exist.
|
||||||
for (Protocol protocol : pipeline.pipes()) {
|
for (Protocol protocol : pipeline.pipes()) {
|
||||||
protocol.init(viaConnection);
|
protocol.init(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
Object wrapper = channelWrapper.get(player);
|
Object wrapper = channelWrapper.get(player);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren