Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2025-01-11 23:51:00 +01:00
More changes involving BaseProtocol - not tested yet
Dieser Commit ist enthalten in:
Ursprung
051df7401e
Commit
31a1bf35d9
@ -117,6 +117,10 @@ public class BungeeServerHandler implements Listener {
|
||||
}
|
||||
}
|
||||
|
||||
info.setServerProtocolVersion(protocolId);
|
||||
// Add version-specific base Protocol
|
||||
pipeline.add(ProtocolRegistry.getBaseProtocol(protocolId));
|
||||
|
||||
user.put(info);
|
||||
user.put(storage);
|
||||
|
||||
|
@ -72,6 +72,7 @@ public abstract class Protocol {
|
||||
|
||||
/**
|
||||
* Initialise a user for this protocol setting up objects.
|
||||
* /!\ WARNING - May be called more than once in a single {@link UserConnection}
|
||||
*
|
||||
* @param userConnection The user to initialise
|
||||
*/
|
||||
|
@ -16,7 +16,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
|
||||
import java.util.logging.Level;
|
||||
|
||||
public class ProtocolPipeline extends Protocol {
|
||||
List<Protocol> protocolList;
|
||||
private List<Protocol> protocolList;
|
||||
private UserConnection userConnection;
|
||||
|
||||
public ProtocolPipeline(UserConnection userConnection) {
|
||||
@ -48,7 +48,7 @@ public class ProtocolPipeline extends Protocol {
|
||||
|
||||
/**
|
||||
* Add a protocol to the current pipeline
|
||||
* This will call the Protocol#init method.
|
||||
* This will call the {@link Protocol#init(UserConnection)} method.
|
||||
*
|
||||
* @param protocol The protocol to add to the end
|
||||
*/
|
||||
@ -174,6 +174,10 @@ public class ProtocolPipeline extends Protocol {
|
||||
return protocolList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cleans the pipe and adds {@link us.myles.ViaVersion.protocols.base.BaseProtocol}
|
||||
* /!\ WARNING - It doesn't add version-specific base Protocol
|
||||
*/
|
||||
public void cleanPipes() {
|
||||
pipes().clear();
|
||||
registerPackets();
|
||||
|
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren