feat: noDailyFocusLimit cheat #1661

Merged
Sainan merged 2 commits from noDailyFocusLimit into main 2025-04-16 06:30:23 -07:00
Showing only changes of commit df4e58f6da - Show all commits

View File

@ -1348,7 +1348,9 @@ export const addFocusXpIncreases = (inventory: TInventoryDatabaseDocument, focus
inventory.FocusXP.AP_POWER += focusXpPlus[FocusType.AP_POWER];
inventory.FocusXP.AP_WARD += focusXpPlus[FocusType.AP_WARD];
inventory.DailyFocus -= focusXpPlus.reduce((a, b) => a + b, 0);
if (!config.noDailyFocusLimit) {
inventory.DailyFocus -= focusXpPlus.reduce((a, b) => a + b, 0);
}
};
export const addLoreFragmentScans = (inventory: TInventoryDatabaseDocument, arr: ILoreFragmentScan[]): void => {