Archiviert
13
0

Fix Copyright notice

Dieser Commit ist enthalten in:
jojo 2021-02-23 11:51:18 +01:00
Ursprung 4d5abbf8e1
Commit f64b60bb58

Datei anzeigen

@ -123,6 +123,9 @@ public class ParticleInventory {
if (steamwarUser.getTeam() != 0) { if (steamwarUser.getTeam() != 0) {
particleSWListInv = new SWListInv<>(player, "§6Partikel", false, teamParticlesEntries, (clickType, particle) -> lobbyPlayer.setParticle(particle)); particleSWListInv = new SWListInv<>(player, "§6Partikel", false, teamParticlesEntries, (clickType, particle) -> lobbyPlayer.setParticle(particle));
} else { } else {
if (teamParticles.contains(lobbyPlayer.getParticle())) {
lobbyPlayer.setParticle(null);
}
particleSWListInv = new SWListInv<>(player, "§6Partikel", false, playerParticlesEntries, (clickType, particle) -> lobbyPlayer.setParticle(particle)); particleSWListInv = new SWListInv<>(player, "§6Partikel", false, playerParticlesEntries, (clickType, particle) -> lobbyPlayer.setParticle(particle));
} }
} else { } else {