Remove broken mutation check in dynamic rotations

This commit is contained in:
Ashcon Partovi 2017-12-21 15:25:47 -07:00 committed by GitHub
parent 6039d545e3
commit 406804e019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
// If a mutation was set for the next map, don't change it yet.
if (!mutationQueue.isEmpty()) return;
// FIXME: 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);