Better age match
This commit is contained in:
parent
1464dc6e17
commit
4d9c8cec02
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue