]> git.localhorst.tv Git - alttp.git/blobdiff - app/Http/Controllers/RoundController.php
no_record rounds and tournaments
[alttp.git] / app / Http / Controllers / RoundController.php
index 4938b3a04a0bac61c31ccd2d2ba49dd604d2209c..d616b861b3d0edb8c22d99679ae4f56614d1a079 100644 (file)
@@ -23,6 +23,7 @@ class RoundController extends Controller
 
                $round = Round::create([
                        'number' => intval($tournament->rounds_max_number) + 1,
+                       'no_record' => $tournament->no_record,
                        'tournament_id' => $validatedData['tournament_id'],
                ]);