From e293e78a2329ba3067ad35e00c38c9f37c23da40 Mon Sep 17 00:00:00 2001 From: Jeremy Valentine <38669521+valentine195@users.noreply.github.com> Date: Wed, 24 May 2023 13:20:44 -0400 Subject: [PATCH] fix: decimal crs now pull xp correctly (close #190) --- src/utils/constants.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 9400d8be..fa8adbbd 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -65,8 +65,11 @@ export const DEFAULT_SETTINGS: InitiativeTrackerData = { export const XP_PER_CR: Record = { "0": 0, + "0.125": 25, "1/8": 25, + "0.25": 50, "1/4": 50, + "0.5": 100, "1/2": 100, "1": 200, "2": 450,