diff --git a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/death/DeathRainbow.java b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/death/DeathRainbow.java index d2d65ac65..5b21d0ed0 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/death/DeathRainbow.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/death/DeathRainbow.java @@ -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);