diff --git a/ChatTwo/Ipc/TypingIpc.cs b/ChatTwo/Ipc/TypingIpc.cs index a367da6..6a97933 100644 --- a/ChatTwo/Ipc/TypingIpc.cs +++ b/ChatTwo/Ipc/TypingIpc.cs @@ -19,8 +19,8 @@ internal sealed class TypingIpc : IDisposable { Plugin = plugin; - StateQueryGate = Plugin.Interface.GetIpcProvider("ChatTwo.GetChatInputState"); - StateChangedGate = Plugin.Interface.GetIpcProvider("ChatTwo.ChatInputStateChanged"); + StateQueryGate = Plugin.Interface.GetIpcProvider("HellionChat.GetChatInputState"); + StateChangedGate = Plugin.Interface.GetIpcProvider("HellionChat.ChatInputStateChanged"); StateQueryGate.RegisterFunc(GetState); } diff --git a/ChatTwo/IpcManager.cs b/ChatTwo/IpcManager.cs index 06d653b..5f4cb24 100755 --- a/ChatTwo/IpcManager.cs +++ b/ChatTwo/IpcManager.cs @@ -15,15 +15,15 @@ internal sealed class IpcManager : IDisposable public IpcManager() { - RegisterGate = Plugin.Interface.GetIpcProvider("ChatTwo.Register"); + RegisterGate = Plugin.Interface.GetIpcProvider("HellionChat.Register"); RegisterGate.RegisterFunc(Register); - AvailableGate = Plugin.Interface.GetIpcProvider("ChatTwo.Available"); + AvailableGate = Plugin.Interface.GetIpcProvider("HellionChat.Available"); - UnregisterGate = Plugin.Interface.GetIpcProvider("ChatTwo.Unregister"); + UnregisterGate = Plugin.Interface.GetIpcProvider("HellionChat.Unregister"); UnregisterGate.RegisterAction(Unregister); - InvokeGate = Plugin.Interface.GetIpcProvider("ChatTwo.Invoke"); + InvokeGate = Plugin.Interface.GetIpcProvider("HellionChat.Invoke"); AvailableGate.SendMessage(); }