diff --git a/LightlessSync/Interop/Ipc/IpcCallerBrio.cs b/LightlessSync/Interop/Ipc/IpcCallerBrio.cs index 0ddaed8..98836a4 100644 --- a/LightlessSync/Interop/Ipc/IpcCallerBrio.cs +++ b/LightlessSync/Interop/Ipc/IpcCallerBrio.cs @@ -13,7 +13,7 @@ namespace LightlessSync.Interop.Ipc; public sealed class IpcCallerBrio : IpcServiceBase { - private static readonly IpcServiceDescriptor BrioDescriptor = new("Brio", "Brio", new Version(3, 0, 0, 0)); + private static readonly IpcServiceDescriptor BrioDescriptor = new("Brio", "Brio", new Version(0, 0, 0, 0)); private readonly ILogger _logger; private readonly DalamudUtilService _dalamudUtilService; @@ -144,7 +144,7 @@ public sealed class IpcCallerBrio : IpcServiceBase try { var version = _apiVersion.Invoke(); - return version.Item1 == 3 && version.Item2 >= 0 + return version.Breaking == 3 && version.Feature >= 0 ? IpcConnectionState.Available : IpcConnectionState.VersionMismatch; }