Fix Prefix color of Blue team
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-10-26 18:28:27 +01:00
parent 986536428d
commit 90563b066d

View File

@ -718,14 +718,14 @@ public final class GameModeConfig<M, W> {
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");
}
}