Merge pull request #286 from iKeirNez/master

Fix name of plugin to get having incorrect capitalisation
This commit is contained in:
Nick Minkler 2012-10-17 06:40:00 -07:00
commit 3dde120abf
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class Economy_CommandsEX implements Economy {
Bukkit.getServer().getPluginManager().registerEvents(new EconomyServerListener(this), plugin);
if (economy == null) {
Plugin commandsex = plugin.getServer().getPluginManager().getPlugin("CommandsEx");
Plugin commandsex = plugin.getServer().getPluginManager().getPlugin("CommandsEX");
if (commandsex != null && commandsex.isEnabled()) {
economy = (CommandsEX) commandsex;