Correctif sur la commande /ghost

This commit is contained in:
Marc Baloup 2015-04-02 14:46:29 -04:00
parent e2be425513
commit 3212fe297d
2 changed files with 11 additions and 5 deletions

View File

@ -60,6 +60,11 @@ public class CommandGhost extends AbstractCommandExecutor {
private void showHelp(Player player) { private void showHelp(Player player) {
player.sendMessage(new String[] {
ChatColor.GOLD+"---------- Commande /ghost ----------",
ChatColor.GRAY+"/ghost thor "+ChatColor.GOLD+" produire de l'orage sur l'intégralité du serveur",
ChatColor.GOLD+"------------------------------------------"
});
} }
@ -80,14 +85,14 @@ public class CommandGhost extends AbstractCommandExecutor {
for (World w : worlds) { for (World w : worlds) {
int nbStrike = r.nextInt(2)+1; WorldBorderConfigEntry config = ConfigManager.getInstance().worldBorderConfig.getEntry(w);
if (config == null)
continue;
int nbStrike = r.nextInt(3)+1;
for (int i=0; i<nbStrike; i++) { for (int i=0; i<nbStrike; i++) {
WorldBorderConfigEntry config = ConfigManager.getInstance().worldBorderConfig.getEntry(w);
if (config == null)
continue;
// l'orage sera localisé à un endroit aléatoire à l'intérieur des WorldBorders // l'orage sera localisé à un endroit aléatoire à l'intérieur des WorldBorders
double locX = r.nextDouble()*(config.getMaxX()-config.getMinX())+config.getMinX(); double locX = r.nextDouble()*(config.getMaxX()-config.getMinX())+config.getMinX();
double locY = r.nextDouble()*255; double locY = r.nextDouble()*255;

View File

@ -56,6 +56,7 @@ public class PandacraftUtilsCommandsManager {
add(new CommandCoeur()); add(new CommandCoeur());
add(new CommandMuco()); add(new CommandMuco());
add(new CommandModo()); add(new CommandModo());
add(new CommandGhost());
} }