summaryrefslogtreecommitdiff
path: root/lib/seeding/fair_ranked_seeding.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/seeding/fair_ranked_seeding.rb')
-rw-r--r--lib/seeding/fair_ranked_seeding.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/seeding/fair_ranked_seeding.rb b/lib/seeding/fair_ranked_seeding.rb
index f56d648..870ebdd 100644
--- a/lib/seeding/fair_ranked_seeding.rb
+++ b/lib/seeding/fair_ranked_seeding.rb
@@ -5,6 +5,9 @@ module Seeding
match = matches.first
match_num = 0
players_used = 0
+ (tournament.players.count/tournament.min_players_per_team).floor.times do
+ match.teams.push Team.create()
+ end
best_first(tournament).each_slice(tournament.min_teams_per_match) do |slice|
(0..tournament.min_teams_per_match-1).each do |index|
match.teams[index].players += slice[index]
@@ -30,7 +33,7 @@ module Seeding
end
def self.previous_score(player, tournament)
- score = tournament.statistics.getStatistic(player.matches.last, player, :score)
+ score = tournament.statistics.where(match: player.matches.last, user: player, name: :score)
if score.nil?
return 0
end