Archiviert
13
0

Add EventParticle #29

Zusammengeführt
YoyoNow hat 9 Commits von EventParticles nach master 2021-10-10 07:49:47 +02:00 zusammengeführt
Nur Änderungen aus Commit ce818d6821 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -160,7 +160,10 @@ public class ParticleInventory {
}
}
SWListInv<SpecialParticle> particleSWListInv = new SWListInv<>(player, "§6Partikel", false, particleList, (clickType, particle) -> lobbyPlayer.setParticle(particle));
SWListInv<SpecialParticle> particleSWListInv = new SWListInv<>(player, "§6Partikel", false, particleList, (clickType, particle) -> {
if (particle == null) return;
lobbyPlayer.setParticle(particle);
});
particleSWListInv.setItem(49, Material.BARRIER, "§8Keine Partikel", new ArrayList<>(), false, clickType -> {
lobbyPlayer.setParticle(null);
});