Skip to content

Commit

Permalink
optimize equipment inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
moonheart committed Sep 4, 2023
1 parent 2360ed1 commit b2452f8
Show file tree
Hide file tree
Showing 5 changed files with 323 additions and 260 deletions.
1 change: 1 addition & 0 deletions MementoMori.WebUI/Jobs/HourlyJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public async Task Execute(IJobExecutionContext context)
return;
}
await _mementoMoriFuncs.Login();
await _mementoMoriFuncs.BountyQuestStartAuto();
await _mementoMoriFuncs.PresentReceiveItem();
await _mementoMoriFuncs.GetAutoBattleReward();
await _mementoMoriFuncs.GuildRaid();
Expand Down
3 changes: 2 additions & 1 deletion MementoMori.WebUI/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@
</MudTabPanel>
<MudTabPanel Text="装备精炼">
<MudPaper Elevation="0" Class="pa-2">
<MudButton Variant="Variant.Filled" Disabled="@ViewModel.IsQuickActionExecuting" @onclick="@ViewModel.AutoEquipmentInheritance">自动精炼SABC、继承魔装到D装</MudButton>
<MudButton Variant="Variant.Filled" Disabled="@ViewModel.IsQuickActionExecuting" @onclick="@ViewModel.AutoEquipmentMatchlessInheritance">自动精炼SABC、继承魔装到D装</MudButton>
<MudButton Variant="Variant.Filled" Disabled="@ViewModel.IsQuickActionExecuting" @onclick="@ViewModel.AutoEquipmentLegendInheritance">自动继承圣装到D装</MudButton>
</MudPaper>
</MudTabPanel>
<MudTabPanel Text="冒险战斗">
Expand Down
2 changes: 1 addition & 1 deletion MementoMori.WebUI/Pages/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<link href="MementoMori.WebUI.styles.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/>
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet"/>
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered"/>
@* <component type="typeof(HeadOutlet)" render-mode="ServerPrerendered"/> *@
</head>
<body>
@RenderBody()
Expand Down
Loading

0 comments on commit b2452f8

Please sign in to comment.