diff --git a/src/components/turn/BotPass.vue b/src/components/turn/BotPass.vue index 439dfd8..07075f1 100644 --- a/src/components/turn/BotPass.vue +++ b/src/components/turn/BotPass.vue @@ -7,13 +7,15 @@ -
  • - -
    - -
    -
  • -
  • + @@ -60,6 +62,9 @@ export default defineComponent({ }, victoryPointsBotAction() : BotAction { return { action: Action.GAIN_VICTORY_POINTS, victoryPoints: this.scoreVP } + }, + isLastRound() : boolean { + return this.navigationState.round == 6 } } }) diff --git a/src/components/turn/PlayerTurn.vue b/src/components/turn/PlayerTurn.vue index 20bfbd4..5afdc51 100644 --- a/src/components/turn/PlayerTurn.vue +++ b/src/components/turn/PlayerTurn.vue @@ -12,7 +12,7 @@