diff --git a/site/character_page/matcher.ts b/site/character_page/matcher.ts index 468fd7a..7302902 100644 --- a/site/character_page/matcher.ts +++ b/site/character_page/matcher.ts @@ -217,7 +217,7 @@ export enum Scoring { MATCH = 1, WEAK_MATCH = 0.5, NEUTRAL = 0, - WEAK_MISMATCH = 0.5, + WEAK_MISMATCH = -0.5, MISMATCH = -1 } @@ -364,7 +364,7 @@ export class Matcher { return new Score(Scoring.MISMATCH, `No ${description}`); if (score === KinkPreference.Maybe) - return new Score(Scoring.WEAK_MISMATCH, `Undecided on ${description}`); + return new Score(Scoring.WEAK_MISMATCH, `Hesitant on ${description}`); if (score === KinkPreference.Yes) return new Score(Scoring.WEAK_MATCH, `Likes ${description}`); @@ -417,7 +417,7 @@ export class Matcher { break; case Scoring.WEAK_MISMATCH: - type = 'Undecided on'; + type = 'Hesitant on'; break; case Scoring.WEAK_MATCH: @@ -443,6 +443,9 @@ export class Matcher { ? Matcher.furryLikeabilityScore(you) : (theyAreHuman ? Matcher.humanLikeabilityScore(you) : Scoring.NEUTRAL); + if (score === Scoring.WEAK_MATCH) + return new Score(score, theyAreAnthro ? 'Would prefer humans, ok with anthros' : 'Would prefer anthros, ok with humans'); + return this.formatScoring(score, theyAreAnthro ? 'furry pairings' : theyAreHuman ? 'human pairings' : ''); }