From 2295dc5552d991bfe596d783c1737c8ed6c7b5ad Mon Sep 17 00:00:00 2001 From: Mees Date: Thu, 24 Oct 2024 19:21:51 +0200 Subject: [PATCH] fix: bug where 0 --- src/stores/trainingStore.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stores/trainingStore.ts b/src/stores/trainingStore.ts index 4afdd75..8d77f1b 100644 --- a/src/stores/trainingStore.ts +++ b/src/stores/trainingStore.ts @@ -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, } },