summaryrefslogtreecommitdiff
path: root/app/models/statistic.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/statistic.rb')
-rw-r--r--app/models/statistic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/statistic.rb b/app/models/statistic.rb
index d62d413..8abf1f4 100644
--- a/app/models/statistic.rb
+++ b/app/models/statistic.rb
@@ -23,8 +23,8 @@ class Statistic < ActiveRecord::Base
self.match.winner = self.match.teams.find{|t| t.users.include? self.user}
end
if (self.match.status == 2) and (self.match.finished?)
- #self.match.tournament_stage.scoring.score(self.match)
self.match.status = 3
+ self.match.tournament_stage.scheduling.finish_match(self.match)
end
self.match.save!
end