mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2024-12-25 18:47:52 +01:00
No point verifying the load order for ProtocolLib.
Also removed a debug message.
This commit is contained in:
parent
8970cd915a
commit
c813811721
@ -348,7 +348,6 @@ class CommandPacket extends CommandBase {
|
||||
else if (side.isForServer())
|
||||
supported.addAll(Packets.Server.getSupported());
|
||||
|
||||
System.out.println("Supported for " + side + ": " + supported);
|
||||
return supported;
|
||||
}
|
||||
|
||||
|
@ -120,12 +120,15 @@ class PluginVerifier {
|
||||
if (plugin == null)
|
||||
throw new IllegalArgumentException("plugin cannot be NULL.");
|
||||
|
||||
if (!loadedAfter.contains(plugin.getName())) {
|
||||
if (verifyLoadOrder(dependency, plugin)) {
|
||||
// Memorize
|
||||
loadedAfter.add(plugin.getName());
|
||||
} else {
|
||||
return VerificationResult.NO_DEPEND;
|
||||
// Skip the load order check for ProtocolLib itself
|
||||
if (!dependency.equals(plugin)) {
|
||||
if (!loadedAfter.contains(plugin.getName())) {
|
||||
if (verifyLoadOrder(dependency, plugin)) {
|
||||
// Memorize
|
||||
loadedAfter.add(plugin.getName());
|
||||
} else {
|
||||
return VerificationResult.NO_DEPEND;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user