Fixed matcher

This commit is contained in:
Mr. Stallion 2019-07-01 20:03:28 -05:00
parent b0925c3de2
commit 673779db02
1 changed files with 2 additions and 2 deletions

View File

@ -392,14 +392,14 @@ export class Matcher {
}
if (Matcher.isAnthro(them)) {
const anthroScore = Matcher.getKinkPreference(them, Kink.AnthroCharacters);
const anthroScore = Matcher.getKinkPreference(you, Kink.AnthroCharacters);
if (anthroScore !== null)
return this.formatKinkScore(anthroScore, 'anthros');
}
if (Matcher.isMammal(them)) {
const mammalScore = Matcher.getKinkPreference(them, Kink.Mammals);
const mammalScore = Matcher.getKinkPreference(you, Kink.Mammals);
if (mammalScore !== null)
return this.formatKinkScore(mammalScore, 'mammals');