Skip to content

Commit

Permalink
why the fuck was that there
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaksuhn committed Sep 10, 2024
1 parent b09cdd5 commit a7bb92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YesAlready/Features/RetainerTaskAsk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public override void Disable()
protected static unsafe void AddonSetup(AddonEvent eventType, AddonArgs addonInfo)
{
if (!P.Active || !P.Config.RetainerTaskAskEnabled) return;
if (!GenericHelpers.TryGetAddonMaster<AddonMaster.RetainerTaskAsk>(out var am))
if (GenericHelpers.TryGetAddonMaster<AddonMaster.RetainerTaskAsk>(out var am))
{
P.TaskManager.Enqueue(() => am.AssignButton->IsEnabled); // must be throttled, there's a little delay after setup before this is enabled
P.TaskManager.Enqueue(am.Assign);
Expand Down

0 comments on commit a7bb92f

Please sign in to comment.