guild upgrades, enum for quest ranks and quests now persist while clicking onto another tab

This commit is contained in:
2023-03-19 13:22:24 +01:00
parent 3ccab02cc8
commit ff5e5e2411
6 changed files with 202 additions and 153 deletions
+2 -2
View File
@@ -9,9 +9,9 @@
</section>
<section class="upgrade">
<p>Guild level: {{ guild.level }}</p>
<button :disabled="guild.gold < 1000">
<button :disabled="guild.gold < 1000" @click="guild.upgrade()">
<span>Upgrade guild level</span><br>
<span>(1000 gold)</span>
<span>({{ guild.displayUpgradeCost }})</span>
</button>
</section>
</main>