mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Fixed nullcheck error message on null plugin (see previous commit)
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
d87866b158
commit
544b0a05ae
1 changed files with 2 additions and 2 deletions
|
@ -383,7 +383,7 @@ public final class SimplePluginManager implements PluginManager {
|
|||
throw new IllegalArgumentException("Priority cannot be null");
|
||||
}
|
||||
if (plugin == null) {
|
||||
throw new IllegalArgumentException("Priority cannot be null");
|
||||
throw new IllegalArgumentException("Plugin cannot be null");
|
||||
}
|
||||
if (!plugin.isEnabled()) {
|
||||
throw new IllegalPluginAccessException("Plugin attempted to register " + type + " while not enabled");
|
||||
|
@ -412,7 +412,7 @@ public final class SimplePluginManager implements PluginManager {
|
|||
throw new IllegalArgumentException("Priority cannot be null");
|
||||
}
|
||||
if (plugin == null) {
|
||||
throw new IllegalArgumentException("Priority cannot be null");
|
||||
throw new IllegalArgumentException("Plugin cannot be null");
|
||||
}
|
||||
if (!plugin.isEnabled()) {
|
||||
throw new IllegalPluginAccessException("Plugin attempted to register " + type + " while not enabled");
|
||||
|
|
Loading…
Reference in a new issue