From 7f487ba78175ff2c4df4a6f118054c6e412c1829 Mon Sep 17 00:00:00 2001 From: Xavier Date: Sat, 15 Jun 2024 14:54:31 -0400 Subject: [PATCH] Feature: Change difficulty from Neutral to Medium (#519) feat(utiltiies.ts): update difficulty level 3 from Neutral to Medium and support to ModerateSupport --- src/utilities.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utilities.ts b/src/utilities.ts index 0b7e3404..07499d23 100755 --- a/src/utilities.ts +++ b/src/utilities.ts @@ -22,7 +22,7 @@ type TMapRatings = { export const mapDifficulty: TMapRatings = { 1: 'Very Easy', 2: 'Easy', - 3: 'Neutral', + 3: 'Medium', 4: 'Hard', 5: 'Very Hard', }; @@ -38,7 +38,7 @@ export const mapOverall: TMapRatings = { export const mapStaffSupport: TMapRatings = { 1: 'Little/No Support', 2: 'Some Support', - 3: 'Neutral', + 3: 'Moderate Support', 4: 'Supportive', 5: 'Strong Support', };