13
0

Update stuff
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-03-25 10:12:12 +01:00
Ursprung 62163b7296
Commit 54ad572e06

Datei anzeigen

@ -82,8 +82,7 @@ public class LobbyPlayer {
if (particle == null) { if (particle == null) {
UserConfig.removePlayerConfig(userId, "lobby-particle"); UserConfig.removePlayerConfig(userId, "lobby-particle");
} else { } else {
Class<?> clazz = particle.getClass(); String saved = particle.getClass().getSimpleName() + "@" + ((Enum<?>) particle).name();
String saved = clazz.getSimpleName() + "@" + ((Enum<?>) particle).name();
UserConfig.updatePlayerConfig(userId, "lobby-particle", saved); UserConfig.updatePlayerConfig(userId, "lobby-particle", saved);
} }
this.particle = particle; this.particle = particle;