From 068489d9b04a122611fc3c933371e5f4dd4ee9e1 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Fri, 29 Dec 2017 20:48:30 -0700 Subject: [PATCH] Restore mutation dynamic rotation check --- .../main/java/tc/oc/pgm/rotation/DynamicRotationListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);