Merge pull request #328 from FatCatClient/enby-prefs
Fixes the nonbinary default kink not being taken into account w/ gender matching
This commit is contained in:
commit
a87907c1db
|
@ -746,6 +746,8 @@ export class Matcher {
|
||||||
Orientation.BiFemalePreference,
|
Orientation.BiFemalePreference,
|
||||||
Orientation.BiMalePreference
|
Orientation.BiMalePreference
|
||||||
].includes(yourOrientation)) {
|
].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 <span>non-binary</span> genders');
|
return new Score(Scoring.MISMATCH, 'No <span>non-binary</span> genders');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue