Don't log if culled is 0

This commit is contained in:
samczsun 2016-05-26 14:47:09 -04:00 committed by cnr
parent 0794761435
commit f7e0bc7d16

View File

@ -146,6 +146,9 @@ public class WorldManager extends MiniPlugin
iterator.remove();
culled++;
}
log("Culled " + culled + " " + type);
if (culled != 0)
{
log("Culled " + culled + " " + type);
}
}
}