onDisable on stop - stephank

This commit is contained in:
Taylor Kelly 2011-01-27 16:15:41 -05:00
parent 105a14d6d1
commit cab61f169e
2 changed files with 8 additions and 0 deletions

View File

@ -160,6 +160,10 @@ public class MinecraftServer implements ICommandListener, Runnable {
private void g() {
a.info("Stopping server");
if(server != null) {
server.disablePlugins();
}
if (f != null) {
f.d();
}

View File

@ -52,6 +52,10 @@ public final class CraftServer implements Server {
}
}
public void disablePlugins() {
pluginManager.disablePlugins();
}
private void loadPlugin(Plugin plugin) {
List<Command> pluginCommands = PluginCommandYamlParser.parse(plugin);
if (!pluginCommands.isEmpty()) {