Changed required players in game for MVP from 10 to 8. (#105)

This commit is contained in:
sharkskill 2019-04-29 14:17:25 +01:00 committed by amactus
parent fa3ddd8c92
commit a48abdb5de
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class HighlightListener implements Listener {
MatchPlayer bestPlayer = null;
double bestPlayerPoints = 0;
if (event.getMatch().getParticipatingPlayers().size() < 10) {
if (event.getMatch().getParticipatingPlayers().size() < 8) {
return;
}