Skip to content

Commit

Permalink
fix macros
Browse files Browse the repository at this point in the history
  • Loading branch information
jeannsebold6666 committed Aug 30, 2024
1 parent 263f66f commit aeaccfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ClassicUO.Client/Game/Managers/MacroManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1516,12 +1516,12 @@ private int Process(MacroObject macro)
break;

case MacroType.DisarmAbility:
Socket.Send_DisarmRequest();
NetClient.Socket.Send_DisarmRequest();

break;

case MacroType.StunAbility:
Socket.Send_StunRequest();
NetClient.Socket.Send_StunRequest();

break;

Expand Down Expand Up @@ -2465,7 +2465,7 @@ public enum MacroType
Zoom,
ToggleChatVisibility,
INVALID,
Aura = 62,
Aura,
AuraOnOff,
Grab,
SetGrabBag,
Expand Down
1 change: 1 addition & 0 deletions src/ClassicUO.Client/Game/Managers/TargetManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Text.RegularExpressions;

namespace ClassicUO.Game.Managers
{
Expand Down

0 comments on commit aeaccfa

Please sign in to comment.