Skip to content
This repository has been archived by the owner on Nov 25, 2019. It is now read-only.

Make dynamic rotations more aggressive #106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void onMatchEnd(MatchEndEvent event) {
// 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);
int playerCount = players.count() - Math.round(event.getMatch().getObservingPlayers().size() / 4);

// Get appropriate rotation
RotationProviderInfo rotation = rotationManager.getProviders().stream()
Expand Down