This is not the place to remove invisible stuff. Should be done in the dynmap format in the config instead.

This commit is contained in:
Olof Larsson 2014-10-02 16:33:50 +02:00
parent 9b392f38a1
commit bf325c46df

View File

@ -761,7 +761,6 @@ public class EngineDynmap extends EngineAbstract
Map<String, Boolean> flags = new HashMap<String, Boolean>(); Map<String, Boolean> flags = new HashMap<String, Boolean>();
for (MFlag mflag : MFlag.getAll()) for (MFlag mflag : MFlag.getAll())
{ {
if (!mflag.isVisible()) continue;
flags.put(mflag.getName(), faction.getFlag(mflag)); flags.put(mflag.getName(), faction.getFlag(mflag));
} }
for (Entry<String, Boolean> entry : flags.entrySet()) for (Entry<String, Boolean> entry : flags.entrySet())