From 52e3c6b7303536c5a532eb1f44b6ec9326790706 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sat, 6 Jan 2024 12:54:42 -0500 Subject: [PATCH] Fix logic error in nature stat effect text --- src/data/nature.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/nature.ts b/src/data/nature.ts index 27f6361f55d..8299d0678b2 100644 --- a/src/data/nature.ts +++ b/src/data/nature.ts @@ -40,7 +40,7 @@ export function getNatureName(nature: Nature, includeStatEffects: boolean = fals const multiplier = getNatureStatMultiplier(nature, stat); if (multiplier > 1) increasedStat = stat; - else + else if (multiplier < 1) decreasedStat = stat; } const textStyle = forStarterSelect ? TextStyle.SUMMARY : TextStyle.WINDOW;