Spawn particles above players head for empty right click

This commit is contained in:
Teriuihi 2022-01-15 03:58:32 +01:00
parent 7318a8be96
commit 40ab1dae99

View File

@ -49,7 +49,7 @@ public class RightClickListener implements Listener {
ParticleSet particleSet = playerSettings.getParticles(aPartType); ParticleSet particleSet = playerSettings.getParticles(aPartType);
if (particleSet == null) if (particleSet == null)
return; return;
particleSet.run(clickedBlock.getLocation()); particleSet.run(player.getLocation());
}); });
} }
}.runTaskAsynchronously(AltitudeParticles.getInstance()); }.runTaskAsynchronously(AltitudeParticles.getInstance());