Reduce the particles given off during Rainbow Death
This commit is contained in:
parent
0be3dd5c14
commit
d2416d1122
@ -69,7 +69,7 @@ public class DeathRainbow extends DeathEffectGadget
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
if (++iterations > 15)
|
||||
if (++iterations > 9)
|
||||
{
|
||||
cancel();
|
||||
return;
|
||||
@ -81,7 +81,7 @@ public class DeathRainbow extends DeathEffectGadget
|
||||
{
|
||||
DustSpellColor colour = SetRainbow.COLOURS[i];
|
||||
|
||||
for (double theta = 0; theta < 2 * Math.PI; theta += Math.PI / 20)
|
||||
for (double theta = 0; theta < 2 * Math.PI; theta += Math.PI / 10)
|
||||
{
|
||||
double x = RADIUS * Math.cos(theta);
|
||||
double z = RADIUS * Math.sin(theta);
|
||||
|
Loading…
Reference in New Issue
Block a user