From 14f2765a1464bf3b0f36fdd92c5bb67c68e377a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Mart=C3=ADnez=20Rinc=C3=B3n?= Date: Thu, 14 Sep 2017 23:58:53 +0200 Subject: [PATCH] Display information about it being reiterative or not --- .../jaimemartz/playerbalancer/commands/ManageCommand.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/com/jaimemartz/playerbalancer/commands/ManageCommand.java b/src/main/java/com/jaimemartz/playerbalancer/commands/ManageCommand.java index 53211d2..921a2d5 100644 --- a/src/main/java/com/jaimemartz/playerbalancer/commands/ManageCommand.java +++ b/src/main/java/com/jaimemartz/playerbalancer/commands/ManageCommand.java @@ -118,6 +118,13 @@ public class ManageCommand extends Command { .create() ); + sender.sendMessage(new ComponentBuilder("Reiterative: ") + .color(ChatColor.GRAY) + .append(manager.isReiterative(section) ? "yes" : "no") + .color(manager.isReiterative(section) ? ChatColor.GREEN : ChatColor.RED) + .create() + ); + if (section.getServer() != null) { sender.sendMessage(new ComponentBuilder("Section Server: ") .color(ChatColor.GRAY)