From 4d9c8cec0259e67af0b9c5a8d46a018c2dd32152 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Wed, 10 Jul 2019 19:36:11 -0500 Subject: [PATCH] Better age match --- learn/matcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/matcher.ts b/learn/matcher.ts index 3fc9d6d..3adf313 100644 --- a/learn/matcher.ts +++ b/learn/matcher.ts @@ -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);