Skip to content

Commit

Permalink
restart now allowed at 10 rounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mrosack committed Apr 6, 2024
1 parent c1a175b commit 7bd3731
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -2,17 +2,17 @@
<div class="row">
<div class="col-sm-12">
<p>
This will allow you to restart the game and go back to the initial save upload within the first 2 rounds of the
This will allow you to restart the game and go back to the initial save upload within the first 10 rounds of the
game. This can help you fix things like missed settings or bad start locations without having to re-lobby the
game.
</p>
</div>
</div>
<div class="row" style="margin-top: 20px">
<div class="col-xs-12 text-center">
<button type="button" class="btn btn-default" [disabled]="game.round > 2" (click)="confirmRestartModal.show()">
<ng-container *ngIf="game.round > 2">Too Late to Restart</ng-container>
<ng-container *ngIf="game.round <= 2">Restart Game!</ng-container>
<button type="button" class="btn btn-default" [disabled]="game.round > 10" (click)="confirmRestartModal.show()">
<ng-container *ngIf="game.round > 10">Too Late to Restart</ng-container>
<ng-container *ngIf="game.round <= 10">Restart Game!</ng-container>
</button>
</div>
</div>
Expand Down

0 comments on commit 7bd3731

Please sign in to comment.