Fix Halloween Kit Selector particles not displaying how they should have

This commit is contained in:
Sam 2017-11-15 14:27:22 +00:00 committed by Alexander Meech
parent 1acbea498a
commit 727e9d07cc

View File

@ -37,9 +37,9 @@ public class HalloweenKitSelector extends KitSelectorGadget
{
Location location = entity.getLocation().add(0, 1.1, 0);
new ColoredParticle(ParticleType.RED_DUST, COLOR_A, UtilAlg.getRandomLocation(location, 1))
new ColoredParticle(ParticleType.RED_DUST, COLOR_A, UtilAlg.getRandomLocation(location, 1, 1, 1))
.display(ViewDist.NORMAL, playTo);
new ColoredParticle(ParticleType.RED_DUST, COLOR_B, UtilAlg.getRandomLocation(location, 1))
new ColoredParticle(ParticleType.RED_DUST, COLOR_B, UtilAlg.getRandomLocation(location, 1, 1, 1))
.display(ViewDist.NORMAL, playTo);
}