Better age match

This commit is contained in:
Mr. Stallion 2019-07-10 19:36:11 -05:00
parent 1464dc6e17
commit 4d9c8cec02
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ export class Matcher {
const yourAge = this.yourAnalysis.age;
if (yourAge !== null) {
if ((yourAge !== null) && (yourAge > 0) && (theirAge > 0) && (yourAge <= 80) && (theirAge <= 80)) {
const olderCharactersScore = Matcher.getKinkPreference(you, Kink.OlderCharacters);
const youngerCharactersScore = Matcher.getKinkPreference(you, Kink.YoungerCharacters);