fixed compilation problems

This commit is contained in:
Chiss 2014-11-11 14:28:35 +11:00
parent 91f92dc7e1
commit 6c6c51e950
4 changed files with 4 additions and 4 deletions

View File

@ -117,6 +117,7 @@ public class GadgetManager extends MiniPlugin
addGadget(new MorphPig(this)); addGadget(new MorphPig(this));
addGadget(new MorphCreeper(this)); addGadget(new MorphCreeper(this));
addGadget(new MorphBlaze(this)); addGadget(new MorphBlaze(this));
addGadget(new MorphGeno(this));
// Particles // Particles
addGadget(new ParticleFoot(this)); addGadget(new ParticleFoot(this));

View File

@ -44,7 +44,7 @@ public class Portal extends MiniPlugin
Bukkit.getMessenger().registerOutgoingPluginChannel(GetPlugin(), "BungeeCord"); Bukkit.getMessenger().registerOutgoingPluginChannel(GetPlugin(), "BungeeCord");
// Register the server command type for future use // Register the server command type for future use
ServerCommandManager.getInstance().registerCommandType(TransferCommand.class.getSimpleName(), TransferCommand.class); //ServerCommandManager.getInstance().registerCommandType(TransferCommand.class.getSimpleName(), TransferCommand.class);
} }
public void SendAllPlayers(String serverName) public void SendAllPlayers(String serverName)

View File

@ -3,7 +3,6 @@ package mineplex.core.report;
import mineplex.core.MiniPlugin; import mineplex.core.MiniPlugin;
import mineplex.core.report.command.ReportCloseCommand; import mineplex.core.report.command.ReportCloseCommand;
import mineplex.core.report.command.ReportCommand; import mineplex.core.report.command.ReportCommand;
import mineplex.core.report.command.ReportDebugCommand;
import mineplex.core.report.command.ReportHandleCommand; import mineplex.core.report.command.ReportHandleCommand;
import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.plugin.java.JavaPlugin;
@ -27,6 +26,6 @@ public class ReportPlugin extends MiniPlugin
AddCommand(new ReportCommand(this)); AddCommand(new ReportCommand(this));
AddCommand(new ReportHandleCommand(this)); AddCommand(new ReportHandleCommand(this));
AddCommand(new ReportCloseCommand(this)); AddCommand(new ReportCloseCommand(this));
AddCommand(new ReportDebugCommand(this)); //AddCommand(new ReportDebugCommand(this));
} }
} }

View File

@ -121,7 +121,7 @@ public class ServerCommandManager
{ {
callback.run(serverCommand); // Run callback callback.run(serverCommand); // Run callback
} }
//} }
} }
} }