1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-10 23:53:06 +00:00

Fixed model names

This commit is contained in:
2015-12-15 08:30:13 -05:00
parent 7970ff000c
commit 4a4dfde8bb
7 changed files with 10 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ module GeneratesTournamentMatches
Pool.new(weight).generatePools()
last_match = matches.where(weight: weight).order(round: :desc).limit(1).first
highest_round = last_match.round
Poolbracket.new(weight, highest_round).generateBracketMatches()
PoolBracket.new(weight, highest_round).generateBracketMatches()
end
end