From 34ac3023abbd38ff6b559b94e4617dd99aa24a91 Mon Sep 17 00:00:00 2001 From: FatCat Client <82377182+FatCatClient@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:44:56 +0100 Subject: [PATCH] Fixes the nonbinary default kink not being taken into account w/ gender matching --- learn/matcher.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/learn/matcher.ts b/learn/matcher.ts index feeb7d8..4ab766f 100644 --- a/learn/matcher.ts +++ b/learn/matcher.ts @@ -746,6 +746,8 @@ export class Matcher { Orientation.BiFemalePreference, Orientation.BiMalePreference ].includes(yourOrientation)) { + let nonBinaryPref:KinkPreference|null = Matcher.getKinkPreference(you, Kink.Nonbinary); + if(nonBinaryPref != null) return Matcher.formatKinkScore(nonBinaryPref, 'non-binary genders'); return new Score(Scoring.MISMATCH, 'No non-binary genders'); } }