mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2025-04-03 10:35:48 +02:00
Added listener for GroupManager and also looking out for the Plugins
disabling themselves, if so we act accordingly.
This commit is contained in:
parent
ab0f78787a
commit
1dcaa0045f
@ -5,7 +5,8 @@ import org.bukkit.event.server.ServerListener;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
||||
import com.nijiko.coelho.iConomy.iConomy;
|
||||
import com.nijikokun.bukkit.Permissions.Permissions;
|
||||
import com.nijiko.permissions.PermissionHandler;
|
||||
import org.anjocaido.groupmanager.GroupManager;
|
||||
|
||||
public class MVPluginListener extends ServerListener {
|
||||
|
||||
@ -14,16 +15,33 @@ public class MVPluginListener extends ServerListener {
|
||||
public MVPluginListener(MultiVerseCore plugin) {
|
||||
this.plugin = plugin;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Keep an eye out for Plugins which we can utilize.
|
||||
*/
|
||||
public void onPluginEnabled(PluginEvent event){
|
||||
if(event.getPlugin().getDescription().getName().equals("Permissions")) {
|
||||
MultiVerseCore.Permissions = Permissions.Security;
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + "- Found Permissions/GroupManager");
|
||||
|
||||
/**
|
||||
* Check to see if GroupManager just enabled.
|
||||
*/
|
||||
if(event.getPlugin().getDescription().getName().equals("GroupManager")){
|
||||
MultiVerseCore.GroupManager = (GroupManager) plugin.getServer().getPluginManager().getPlugin("GroupManager");
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + " - Found GroupManager");
|
||||
}
|
||||
|
||||
/**
|
||||
* Check to see if Permissions was just enabled, we only wan't to perform the following if GroupManager is not found.
|
||||
*/
|
||||
if(event.getPlugin().getDescription().getName().equals("Permissions")
|
||||
&& MultiVerseCore.GroupManager==null
|
||||
&& plugin.getServer().getPluginManager().getPlugin("GroupManager") == null) {
|
||||
MultiVerseCore.Permissions = (PermissionHandler) plugin.getServer().getPluginManager().getPlugin("Permissions");
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + "- Found Permissions");
|
||||
}
|
||||
|
||||
/**
|
||||
* Use the METHOD supplied by iConomy to register it etc...
|
||||
*/
|
||||
|
||||
if(MultiVerseCore.getiConomy() == null) {
|
||||
Plugin iConomy = plugin.getServer().getPluginManager().getPlugin("iConomy");
|
||||
|
||||
@ -36,4 +54,33 @@ public class MVPluginListener extends ServerListener {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* We'll check if any of the plugins we rely on decide to Disable themselves.
|
||||
*/
|
||||
public void onPluginDisabled(PluginEvent event){
|
||||
/**
|
||||
* Check to see if GroupManager just disabled.
|
||||
*/
|
||||
if(event.getPlugin().getDescription().getName().equals("GroupManager")){
|
||||
MultiVerseCore.GroupManager = null;
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + " - GroupManager has been Disabled");
|
||||
}
|
||||
|
||||
/**
|
||||
* Check to see if Permissions just disabled.
|
||||
*/
|
||||
if(event.getPlugin().getDescription().getName().equals("Permissions")) {
|
||||
MultiVerseCore.Permissions = null;
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + "- Permissions has been Disabled");
|
||||
}
|
||||
|
||||
/**
|
||||
* Check to see if iConomy just disabled.
|
||||
*/
|
||||
if(MultiVerseCore.getiConomy() != null) {
|
||||
MultiVerseCore.iConomy = null;
|
||||
MultiVerseCore.log.info(MultiVerseCore.logPrefix + "- iConom has been Disabled");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user