Fixes the nonbinary default kink not being taken into account w/ gender matching
This commit is contained in:
parent
0d3d111f8c
commit
34ac3023ab
|
@ -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 <span>non-binary</span> genders');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue