mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 02:02:04 -07:00
Fixed logic issue toggling plugins
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
@@ -144,7 +144,7 @@ public final class JavaPluginLoader implements PluginLoader {
|
||||
throw new IllegalArgumentException("Plugin is not associated with this PluginLoader");
|
||||
}
|
||||
|
||||
if (plugin.isEnabled()) {
|
||||
if (!plugin.isEnabled()) {
|
||||
JavaPlugin jPlugin = (JavaPlugin)plugin;
|
||||
|
||||
server.getPluginManager().callEvent(new PluginEvent(Event.Type.PLUGIN_ENABLE, plugin));
|
||||
@@ -158,7 +158,7 @@ public final class JavaPluginLoader implements PluginLoader {
|
||||
throw new IllegalArgumentException("Plugin is not associated with this PluginLoader");
|
||||
}
|
||||
|
||||
if (!plugin.isEnabled()) {
|
||||
if (plugin.isEnabled()) {
|
||||
JavaPlugin jPlugin = (JavaPlugin)plugin;
|
||||
|
||||
server.getPluginManager().callEvent(new PluginEvent(Event.Type.PLUGIN_DISABLE, plugin));
|
||||
|
Reference in New Issue
Block a user