mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
Significantly lower IceBlast particles
This commit is contained in:
parent
1cb999dfcf
commit
832981212f
1 changed files with 3 additions and 3 deletions
|
@ -172,7 +172,7 @@ public class IceBlast {
|
|||
Methods.breakBreathbendingHold(entity);
|
||||
|
||||
for(Location loc : Methods.getCircle(entity.getLocation(), 6, 7, false, false, 0)) {
|
||||
ParticleEffect.SNOW_SHOVEL.display(loc, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 50);
|
||||
ParticleEffect.SNOW_SHOVEL.display(loc, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 10);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -295,8 +295,8 @@ public class IceBlast {
|
|||
sourceblock = block;
|
||||
source = new TempBlock(sourceblock, Material.PACKED_ICE, data);
|
||||
|
||||
ParticleEffect.SNOWBALL_POOF.display(location, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 1000);
|
||||
ParticleEffect.SNOW_SHOVEL.display(location, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 1000);
|
||||
ParticleEffect.SNOWBALL_POOF.display(location, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 100);
|
||||
ParticleEffect.SNOW_SHOVEL.display(location, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 100);
|
||||
location = location.add(direction.clone());
|
||||
|
||||
} else if (prepared) {
|
||||
|
|
Loading…
Reference in a new issue