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 81c7efc commit 349b79bCopy full SHA for 349b79b
TbsCore/Tasks/LowLevel/HeroEquip.cs
@@ -21,7 +21,7 @@ public override async Task<TaskRes> Execute(Account acc)
21
var (item, amount) = use;
22
23
var (category, _, _) = HeroHelper.ParseHeroItem(item);
24
- if (category != HeroItemCategory.Resource || category != HeroItemCategory.Stackable || category != HeroItemCategory.NonStackable)
+ if (category != HeroItemCategory.Resource && category != HeroItemCategory.Stackable && category != HeroItemCategory.NonStackable)
25
{
26
// Check if hero is at home
27
if (acc.Hero.Status != Hero.StatusEnum.Home)
0 commit comments