We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab9852 commit 05245dfCopy full SHA for 05245df
TbsCore/Parsers/HeroParser.cs
@@ -128,7 +128,7 @@ public static List<HeroItem> GetHeroInventory(HtmlDocument htmlDoc)
128
/// <returns>TimeSpan after how much time hero arrival will happen</returns>
129
public static TimeSpan GetHeroArrivalInfo(HtmlDocument html)
130
{
131
- var statusMsg = html.DocumentNode.Descendants("div").FirstOrDefault(x => x.HasClass("heroStatusMessage"));
+ var statusMsg = html.DocumentNode.Descendants("div").FirstOrDefault(x => x.HasClass("heroState"));
132
if (statusMsg == null) return new TimeSpan(-1, 0, 0); // -1 hour
133
134
return TimeParser.ParseTimer(statusMsg);
0 commit comments