Skip to content

Commit

Permalink
fix auto entry not working
Browse files Browse the repository at this point in the history
  • Loading branch information
monheart committed May 17, 2024
1 parent 8560848 commit 5fdafc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MementoMori/MementoMoriFuncs.Ops.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2581,7 +2581,7 @@ await ExecuteQuickAction(async (log, token) =>
{
return;
}
var guids = UserSyncData.UserCharacterDtoInfos.OrderByDescending(d=>BattlePowerCalculatorUtil.CalcCharacterBattleParameter(UserId, d.Guid)).Take(20).Select(d=>d.Guid).ToList();
var guids = UserSyncData.UserCharacterDtoInfos.OrderByDescending(d=>BattlePowerCalculatorUtil.GetUserCharacterBattlePower(UserId, d.Guid)).Take(20).Select(d=>d.Guid).ToList();
var entryCharacterResponse = await GetResponse<EntryCharacterRequest, EntryCharacterResponse>(new(){CharacterGuidList = guids, GuildTowerEntryType = GuildTowerEntryType.Entry, IsContinueEntry = false});
log(TextResourceTable.Get("[GuildTowerEntryToastMessage]"));
guildTowerInfo = await GetResponse<GetGuildTowerInfoRequest, GetGuildTowerInfoResponse>(new (){});
Expand Down

0 comments on commit 5fdafc3

Please sign in to comment.