Skip to content

Commit

Permalink
fix: bug where 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mees committed Oct 24, 2024
1 parent 4160a53 commit 2295dc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/stores/trainingStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -971,10 +971,10 @@ export const useTrainingStore = defineStore({

resetArmyModifiers() {
this.modifiers.army = {
attack: 0,
defense: 0,
health: 0,
regen: 0,
attack: 1,
defense: 1,
health: 1,
regen: 1,
}
},

Expand Down

0 comments on commit 2295dc5

Please sign in to comment.