Skip to content

Commit

Permalink
do not change relic if already have draw count
Browse files Browse the repository at this point in the history
  • Loading branch information
moonheart committed Jan 4, 2024
1 parent 15605c1 commit 3f80e72
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions MementoMori/MementoMoriFuncs.Ops.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2302,6 +2302,7 @@ await ExecuteQuickAction(async (log, token) =>
if (gachaCaseInfo == null) return;

if (gachaCaseInfo.GachaRelicType == targetRelicType) return;
if (gachaCaseInfo.GachaBonusDrawCount > 0) return;

await GetResponse<ChangeGachaRelicRequest, ChangeGachaRelicResponse>(new ChangeGachaRelicRequest(){GachaRelicType = targetRelicType});

Expand Down

0 comments on commit 3f80e72

Please sign in to comment.