diff --git a/PGM/src/main/java/tc/oc/pgm/rotation/DynamicRotationListener.java b/PGM/src/main/java/tc/oc/pgm/rotation/DynamicRotationListener.java index a021518..0de0532 100644 --- a/PGM/src/main/java/tc/oc/pgm/rotation/DynamicRotationListener.java +++ b/PGM/src/main/java/tc/oc/pgm/rotation/DynamicRotationListener.java @@ -44,8 +44,8 @@ public class DynamicRotationListener implements PluginFacet, Listener { // Ignore if dynamic rotations are disabled or if there is only one rotation available if (!config.getBoolean("dynamic", false) || rotationManager.getRotations().size() <= 1) return; - // FIXME: If a mutation was set for the next map, don't change it yet. - // if (!mutationQueue.isEmpty()) return; + // If a mutation was set for the next map, don't change it yet. + if (!mutationQueue.isEmpty()) return; int playerCount = players.count() + Math.round(event.getMatch().getObservingPlayers().size() / 2);