diff --git a/src/main/java/fr/xephi/authme/command/executable/DungeonMazeCommand.java b/src/main/java/fr/xephi/authme/command/executable/AuthMeCommand.java similarity index 75% rename from src/main/java/fr/xephi/authme/command/executable/DungeonMazeCommand.java rename to src/main/java/fr/xephi/authme/command/executable/AuthMeCommand.java index 569a6286..a2b159e4 100644 --- a/src/main/java/fr/xephi/authme/command/executable/DungeonMazeCommand.java +++ b/src/main/java/fr/xephi/authme/command/executable/AuthMeCommand.java @@ -1,12 +1,11 @@ package fr.xephi.authme.command.executable; -import com.timvisee.dungeonmaze.DungeonMaze; -import com.timvisee.dungeonmaze.command.CommandParts; -import com.timvisee.dungeonmaze.command.ExecutableCommand; +import fr.xephi.authme.command.CommandParts; +import fr.xephi.authme.command.ExecutableCommand; import org.bukkit.ChatColor; import org.bukkit.command.CommandSender; -public class DungeonMazeCommand extends ExecutableCommand { +public class AuthMeCommand extends ExecutableCommand { /** * Execute the command. @@ -20,7 +19,8 @@ public class DungeonMazeCommand extends ExecutableCommand { @Override public boolean executeCommand(CommandSender sender, CommandParts commandReference, CommandParts commandArguments) { // Show some version info - sender.sendMessage(ChatColor.GREEN + "This server is running " + DungeonMaze.PLUGIN_NAME + " v" + DungeonMaze.getVersionName() + "! " + ChatColor.RED + "<3"); + // TODO: Use plugin name and version constants here! + sender.sendMessage(ChatColor.GREEN + "This server is running AuthMeReloaded v1.0! " + ChatColor.RED + "<3"); sender.sendMessage(ChatColor.YELLOW + "Use the command " + ChatColor.GOLD + "/" + commandReference.get(0) + " help" + ChatColor.YELLOW + " to view help."); sender.sendMessage(ChatColor.YELLOW + "Use the command " + ChatColor.GOLD + "/" + commandReference.get(0) + " about" + ChatColor.YELLOW + " to view about."); return true;