diff --git a/src/main/java/de/fanta/challenges/guis/eventgui/TeamSettingsGUI.java b/src/main/java/de/fanta/challenges/guis/eventgui/TeamSettingsGUI.java index 9715b0b..c25f37c 100644 --- a/src/main/java/de/fanta/challenges/guis/eventgui/TeamSettingsGUI.java +++ b/src/main/java/de/fanta/challenges/guis/eventgui/TeamSettingsGUI.java @@ -27,21 +27,21 @@ public static void createTeamSettingsGUI(Player p) { if (!plugin.getConfig().getBoolean("event.teams")) { - TEAM_SETTINGS_GUI.setItem(TEAM_INDEX, GUIUtils.createGuiItem(Material.RED_BED, "Teams deaktiviert")); + TEAM_SETTINGS_GUI.setItem(TEAM_INDEX, GUIUtils.createGuiItem(Material.RED_BED, ChatUtil.RED + "Teams deaktiviert")); } else { - TEAM_SETTINGS_GUI.setItem(TEAM_INDEX, GUIUtils.createGuiItem(Material.LIME_BED, "Teams aktiviert", true)); + TEAM_SETTINGS_GUI.setItem(TEAM_INDEX, GUIUtils.createGuiItem(Material.LIME_BED, ChatUtil.GREEN + "Teams aktiviert", true)); } if (!plugin.getConfig().getBoolean("event.teamselect")) { - TEAM_SETTINGS_GUI.setItem(TEAM_SELECT_INDEX, GUIUtils.createGuiItem(Material.RED_CONCRETE_POWDER, "Team auswahl deaktiviert")); + TEAM_SETTINGS_GUI.setItem(TEAM_SELECT_INDEX, GUIUtils.createGuiItem(Material.RED_CONCRETE_POWDER, ChatUtil.RED + "Team auswahl deaktiviert")); } else { - TEAM_SETTINGS_GUI.setItem(TEAM_SELECT_INDEX, GUIUtils.createGuiItem(Material.LIME_CONCRETE_POWDER, "Team auswahl aktiviert", true)); + TEAM_SETTINGS_GUI.setItem(TEAM_SELECT_INDEX, GUIUtils.createGuiItem(Material.LIME_CONCRETE_POWDER, ChatUtil.GREEN + "Team auswahl aktiviert", true)); } if (!plugin.getConfig().getBoolean("event.autoteams")) { - TEAM_SETTINGS_GUI.setItem(AUTOTEAM_BY_JOIN_INDEX, GUIUtils.createGuiItem(Material.RED_CONCRETE_POWDER, "Autoteams by Join deaktiviert")); + TEAM_SETTINGS_GUI.setItem(AUTOTEAM_BY_JOIN_INDEX, GUIUtils.createGuiItem(Material.RED_CONCRETE_POWDER, ChatUtil.RED + "Autoteams by Join deaktiviert")); } else { - TEAM_SETTINGS_GUI.setItem(AUTOTEAM_BY_JOIN_INDEX, GUIUtils.createGuiItem(Material.LIME_CONCRETE_POWDER, "Autoteams by Join aktiviert", true)); + TEAM_SETTINGS_GUI.setItem(AUTOTEAM_BY_JOIN_INDEX, GUIUtils.createGuiItem(Material.LIME_CONCRETE_POWDER, ChatUtil.GREEN + "Autoteams by Join aktiviert", true)); }