Dieser Commit ist enthalten in:
Ursprung
62163b7296
Commit
54ad572e06
@ -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;
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren