better quest adventurer choice ux

This commit is contained in:
2025-05-11 16:37:58 +02:00
parent e71326d89b
commit d962c85629
5 changed files with 44 additions and 21 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
<script setup lang="ts">
import {RouterLink, RouterView} from 'vue-router'
import {version} from "@/../package.json";
</script>
<template>
@@ -104,7 +105,7 @@ export default defineComponent({
methods: {
async updateMissives() {
for (const missive of this.missives) {
if (missive.adventurers.length <= 0) {
if (missive.adventurers.length < missive.maxAdventurers) {
missive.progressPoints = 0;
continue;
}