Skip to content

Commit

Permalink
Merge pull request #123 from Erol444/hotfix-17-06-2022
Browse files Browse the repository at this point in the history
Hotfix 16 06 2022
  • Loading branch information
vinaghost authored Jun 16, 2022
2 parents 8f2889e + 866f448 commit 32bdc28
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions TbsCore/Tasks/Update/HeroUpdateInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Threading.Tasks;
using TbsCore.Helpers;
using TbsCore.Models.AccModels;
using TbsCore.Parsers;
using TbsCore.Tasks.Others;
using static TbsCore.Helpers.Classificator;

Expand All @@ -24,6 +25,11 @@ public override async Task<TaskRes> Execute(Account acc)
if (!result) return TaskRes.Executed;
}

{
acc.Hero.Items = HeroParser.GetHeroInventory(acc.Wb.Html);
acc.Hero.Equipt = HeroParser.GetHeroEquipment(acc.Wb.Html);
}

if (acc.Hero.Settings.AutoRefreshInfo)
{
NextExecute = DateTime.Now.AddMinutes(
Expand Down

0 comments on commit 32bdc28

Please sign in to comment.