Merge pull request #142 in MIN/mineplex from bugfix/coal-particles to develop

* commit 'd1d3382ec065bb7c508044d53124266fda142c00':
  Prevented Coal particles from showing during the game
This commit is contained in:
Shaun Bennett 2016-01-29 02:33:57 -06:00
commit 2e2a08bea8

View File

@ -33,6 +33,9 @@ public class ParticleCoalFumes extends ParticleGadget
for(Player p : GetActive())
{
if (!shouldDisplay(p))
continue;
UtilParticle.PlayParticleToAll(ParticleType.LARGE_SMOKE, p.getLocation(), 0.8f, 0, 0.8f, 0, 12, ViewDist.NORMAL);
}
}