13
0
geforkt von Mirrors/Velocity

Make servers list option more readable

Dieser Commit ist enthalten in:
Mark Vainomaa 2018-10-27 22:54:10 +03:00
Ursprung 2b4b77ef95
Commit 25f6ca410c
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1B3F9523B542D315

Datei anzeigen

@ -394,7 +394,11 @@ public class VelocityConfiguration extends AnnotatedConfig implements ProxyConfi
private static class Servers {
@IsMap
@Comment("Configure your servers here.")
private Map<String, String> servers = ImmutableMap.of("lobby", "127.0.0.1:30066", "factions", "127.0.0.1:30067", "minigames", "127.0.0.1:30068");
private Map<String, String> servers = ImmutableMap.of(
"lobby", "127.0.0.1:30066",
"factions", "127.0.0.1:30067",
"minigames", "127.0.0.1:30068"
);
@Comment("In what order we should try servers when a player logs in or is kicked from a server.")
@ConfigKey("try")