From 90563b066dea753f44a7c172fc25b530462b4042 Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Sun, 26 Oct 2025 18:28:27 +0100 Subject: [PATCH] Fix Prefix color of Blue team --- CommonCore/SQL/src/de/steamwar/sql/GameModeConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/GameModeConfig.java b/CommonCore/SQL/src/de/steamwar/sql/GameModeConfig.java index 92cd116b..18941b19 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/GameModeConfig.java +++ b/CommonCore/SQL/src/de/steamwar/sql/GameModeConfig.java @@ -718,14 +718,14 @@ public final class GameModeConfig { public final String Name; /** - * @implSpec {@code §3} by default + * @implSpec {@code §9} by default */ public final String Prefix; private BlueConfig(YMLWrapper loader) { loaded = loader.canLoad(); Name = loader.getString("Name", "Blau"); - Prefix = loader.getString("Prefix", "§3"); + Prefix = loader.getString("Prefix", "§9"); } }