SteamWar/BauSystem2.0
Archiviert
12
0
Dieser Commit ist enthalten in:
Zeanon 2021-05-01 18:31:36 +02:00
Ursprung 7a1cb2a865
Commit bc372fad3b

Datei anzeigen

@ -95,7 +95,7 @@ public class DepthCounter {
public Set<CountMode> getModes(Player p) {
final Set<CountMode> countModes = playerSettings.get(p);
return countModes == null ? Collections.emptySet() : countModes;
return countModes == null ? Collections.emptySet() : countModes.stream().sorted().collect(Collectors.toCollection(LinkedHashSet::new));
}
public boolean hasModes(Player p) {