Dieser Commit ist enthalten in:
Ursprung
b34f4022b1
Commit
28f4c89d32
@ -78,7 +78,7 @@ public class ParticleInventory {
|
||||
addParticle(particleList, particle, clickable, player);
|
||||
}
|
||||
for (SpecialTeamParticle particle : SpecialTeamParticle.particles) {
|
||||
if (particle.getTeamId() == 0 || steamwarUser.getTeam() == particle.getTeamId()) {
|
||||
if (particle.getTeamId() == 0 || steamwarUser.getTeam() == particle.getTeamId() || steamwarUser.getUserGroup() != UserGroup.Member) {
|
||||
addParticle(particleList, particle, true, player);
|
||||
}
|
||||
}
|
||||
|
@ -43,31 +43,35 @@ public class LobbyPlayer {
|
||||
particle = null;
|
||||
String saved = UserConfig.getConfig(userId, "lobby-particle");
|
||||
if (saved != null) {
|
||||
String[] strings = saved.split("@");
|
||||
switch (strings[0]) {
|
||||
case "PlayerParticle":
|
||||
particle = PlayerParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "TeamParticle":
|
||||
particle = TeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "ServerTeamParticle":
|
||||
particle = ServerTeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticle":
|
||||
particle = EventParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticleParticipation":
|
||||
particle = EventParticleParticipation.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticlePlacement":
|
||||
particle = EventParticlePlacement.valueOf(strings[1]);
|
||||
break;
|
||||
case "SpecialParticle":
|
||||
particle = SpecialTeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
try {
|
||||
String[] strings = saved.split("@");
|
||||
switch (strings[0]) {
|
||||
case "PlayerParticle":
|
||||
particle = PlayerParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "TeamParticle":
|
||||
particle = TeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "ServerTeamParticle":
|
||||
particle = ServerTeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticle":
|
||||
particle = EventParticle.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticleParticipation":
|
||||
particle = EventParticleParticipation.valueOf(strings[1]);
|
||||
break;
|
||||
case "EventParticlePlacement":
|
||||
particle = EventParticlePlacement.valueOf(strings[1]);
|
||||
break;
|
||||
case "SpecialParticle":
|
||||
particle = SpecialTeamParticle.valueOf(strings[1]);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
setParticle(null);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren