From 9fd5b7502674ce0a53c444137ae2a743dc6d6fae Mon Sep 17 00:00:00 2001 From: RedstonewolfX <108761527+RedstonewolfX@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:25:04 -0400 Subject: [PATCH] Update src/modifier/modifier-type.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/modifier/modifier-type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 0afc06e1d59..1026c6d72c8 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -2444,7 +2444,7 @@ export class ModifierTypeOption { /** * Calculates the team's luck value. * @param party The player's party. - * @returns A value between 0 and 14, or 0 if the player is in Daily Run mode. + * @returns A number between 0 and 14 based on the party's total luck value, or a random number between 0 and 14 if the player is in Daily Run mode. */ export function getPartyLuckValue(party: Pokemon[]): integer { if (party[0].scene.gameMode.isDaily) {