Prevented Coal particles from showing during the game

This commit is contained in:
Mysticate 2016-01-28 22:44:33 -05:00
parent 951c27123a
commit d1d3382ec0
1 changed files with 3 additions and 0 deletions

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);
}
}