We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8357a00 commit 179fd6aCopy full SHA for 179fd6a
loader/src/main/java/net/swofty/loader/Hypixel.java
@@ -182,7 +182,9 @@ static void main(String[] args) {
182
ServerOutboundMessage.registerToProxyProtocol(protocol);
183
}
184
List<ProtocolObject> protocolObjects = SkyBlockGenericLoader.loopThroughPackage(
185
- "net.swofty.commons.protocol.objects", ProtocolObject.class).toList();
+ "net.swofty.commons.protocol.objects", ProtocolObject.class)
186
+ .filter(obj -> !obj.getClass().getPackageName().startsWith("net.swofty.commons.protocol.objects.proxy"))
187
+ .toList();
188
protocolObjects.forEach(ServerOutboundMessage::registerFromProtocolObject);
189
proxyAPI.start();
190
0 commit comments