Skip to content

Commit

Permalink
Possible to award money when no money was specified beforehand (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmlessHarm authored Dec 6, 2024
2 parents dd579f8 + 80746a1 commit 7b82390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/combat/Finished.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</div>

<!-- CURRENCY -->
<div class="currency mb-3" v-if="encounter.currency">
<div class="currency mb-3">
<div class="currency-form">
<div v-for="(coin, key) in currencies" :key="key">
<img :src="require(`src/assets/_img/currency/${coin.color}.svg`)" />
Expand Down Expand Up @@ -235,7 +235,7 @@ export default {
campaign: {},
patreon: true,
tab: "loot",
editableEncounter: this.encounter,
editableEncounter: { ...this.encounter, currency: {} },
};
},
computed: {
Expand Down

0 comments on commit 7b82390

Please sign in to comment.