Fixed matcher
This commit is contained in:
parent
b0925c3de2
commit
673779db02
|
@ -392,14 +392,14 @@ export class Matcher {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Matcher.isAnthro(them)) {
|
if (Matcher.isAnthro(them)) {
|
||||||
const anthroScore = Matcher.getKinkPreference(them, Kink.AnthroCharacters);
|
const anthroScore = Matcher.getKinkPreference(you, Kink.AnthroCharacters);
|
||||||
|
|
||||||
if (anthroScore !== null)
|
if (anthroScore !== null)
|
||||||
return this.formatKinkScore(anthroScore, 'anthros');
|
return this.formatKinkScore(anthroScore, 'anthros');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Matcher.isMammal(them)) {
|
if (Matcher.isMammal(them)) {
|
||||||
const mammalScore = Matcher.getKinkPreference(them, Kink.Mammals);
|
const mammalScore = Matcher.getKinkPreference(you, Kink.Mammals);
|
||||||
|
|
||||||
if (mammalScore !== null)
|
if (mammalScore !== null)
|
||||||
return this.formatKinkScore(mammalScore, 'mammals');
|
return this.formatKinkScore(mammalScore, 'mammals');
|
||||||
|
|
Loading…
Reference in New Issue