Skip to content

Commit

Permalink
fixed maxLevel of memory
Browse files Browse the repository at this point in the history
  • Loading branch information
yuko1101 committed May 12, 2024
1 parent 24751d2 commit 509ffa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/StarRailUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class StarRailUser extends User {
const challengeInfo = recordInfo.get("challengeInfo");
this.forgottenHall = {
memory: {
maxLevel: challengeInfo.getAsNumberWithDefault(0, "noneScheduleMaxLevel"),
maxLevel: challengeInfo.getAsNumberWithDefault(0, "scheduleMaxLevel"),
},
};
this.pureFiction = {
Expand Down

0 comments on commit 509ffa9

Please sign in to comment.