Fix logic error in nature stat effect text

pull/14/head
Flashfyre 2024-01-06 12:54:42 -05:00
parent 06020bee14
commit 52e3c6b730
1 changed files with 1 additions and 1 deletions

View File

@ -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;