]> git.localhorst.tv Git - alttp.git/blobdiff - app/Models/User.php
do not award records for forfeits
[alttp.git] / app / Models / User.php
index b4950c306c458fc5973f2a899f7021f93603f53d..eea1426d8fcc7c592aca5592b5a2ef70f7765253 100644 (file)
@@ -59,37 +59,46 @@ class User extends Authenticatable
 
        public function round_first() {
                return $this->rounds()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
+                       ->wherePivot('forfeit', false)
                        ->wherePivot('placement', 1);
        }
 
        public function round_second() {
                return $this->rounds()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
+                       ->wherePivot('forfeit', false)
                        ->wherePivot('placement', 2);
        }
 
        public function round_third() {
                return $this->rounds()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
+                       ->wherePivot('forfeit', false)
                        ->wherePivot('placement', 3);
        }
 
        public function tournament_first() {
                return $this->tournaments()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
                        ->wherePivot('placement', 1);
        }
 
        public function tournament_second() {
                return $this->tournaments()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
                        ->wherePivot('placement', 2);
        }
 
        public function tournament_third() {
                return $this->tournaments()
-                       ->whereNot('locked')
+                       ->where('locked', true)
+                       ->where('no_record', false)
                        ->wherePivot('placement', 3);
        }