diff --git a/XivCommon/Hooks.cs b/XivCommon/Hooks.cs index c4ad8f2..8ea2915 100755 --- a/XivCommon/Hooks.cs +++ b/XivCommon/Hooks.cs @@ -11,24 +11,24 @@ namespace XivCommon { /// /// This flag is used to disable all hooking. /// - None, + None = 0, /// /// The BattleTalk hook. /// /// This hook is used in order to enable the BattleTalk events. /// - BattleTalk, + BattleTalk = 1 << 1, /// /// Hooks used for refreshing Party Finder listings. /// - PartyFinderListings, + PartyFinderListings = 1 << 2, /// /// Hooks used for Party Finder join events. /// - PartyFinderJoins, + PartyFinderJoins = 1 << 3, /// /// All Party Finder hooks. @@ -42,21 +42,21 @@ namespace XivCommon { /// /// This hook is used in order to enable the Talk events. /// - Talk, + Talk = 1 << 4, /// /// The chat bubbles hooks. /// /// This hook is used in order to enable the chat bubbles events. /// - ChatBubbles, + ChatBubbles = 1 << 5, /// /// The context menu hooks. /// /// This hook is used in order to enable context menu functions. /// - ContextMenu, + ContextMenu = 1 << 6, } internal static class HooksExt {