Merge pull request #1467 from danielyxie/dev

dont update int when you dont have it
This commit is contained in:
hydroflame 2021-10-12 10:29:56 -04:00 committed by GitHub
commit ac7c9451a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -451,9 +451,8 @@ export function gainIntelligenceExp(this: IPlayer, exp: number): void {
}
if (SourceFileFlags[5] > 0 || this.intelligence > 0) {
this.intelligence_exp += exp;
this.intelligence = Math.floor(this.calculateSkill(this.intelligence_exp));
}
this.intelligence = Math.floor(this.calculateSkill(this.intelligence_exp));
}
//Given a string expression like "str" or "strength", returns the given stat