--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java 2013/03/23 10:14:42 1950 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java 2016/07/12 14:23:02 3063 @@ -43,7 +43,7 @@ getCommand("eternalday").setExecutor(new EternalDayCommand(this)); getCommand("getpos").setExecutor( new GetposCommand() ); getCommand("msg").setExecutor( new MsgCommand( this ) ); - getCommand("tp").setExecutor( new TeleportCommand() ); +// getCommand("tp").setExecutor( new TeleportCommand() ); getCommand("wall").setExecutor( new WallCommand() ); getCommand("weather").setExecutor( new WeatherCommand() ); @@ -73,6 +73,8 @@ getCommand("spawn").setExecutor( new SpawnCommand() ); getCommand("template").setExecutor( new TemplateCommand(this) ); + getCommand("regenerate").setExecutor( new RegenerateCommand() ); + LogintimeHandler logintimeHandler = new LogintimeHandler( this.getDataFolder() ); @@ -106,6 +108,10 @@ pm.registerEvents(chunks, this); getCommand("stickychunk").setExecutor(chunks); + Mute mute = new Mute(this); + pm.registerEvents(mute, this); + getCommand("mute").setExecutor(mute); + getCommand("unmute").setExecutor(mute); Runnable ddlInstaller = new Runnable() {