1
0
mirror of https://e.coding.net/circlecloud/SimpleEssential.git synced 2024-11-16 01:08:46 +00:00

remove register command tip...

Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
j502647092 2015-08-23 11:03:58 +08:00
parent b98844d588
commit 9f50038696

View File

@ -3,7 +3,6 @@
*/
package cn.citycraft.SimpleEssential.command;
import org.bukkit.Bukkit;
import org.bukkit.command.CommandException;
import org.bukkit.command.CommandSender;
@ -24,7 +23,6 @@ public abstract class BaseCommand {
public BaseCommand(String name, String... aliases) {
this.name = name;
this.aliases = aliases;
Bukkit.getLogger().info("注册命令: " + name + aliases);
}
/**