Temporarily disable C+, Heels and Honorific

This commit is contained in:
Loporrit
2024-07-16 23:15:10 +00:00
parent 005f57c3e9
commit cff59d1900
2 changed files with 5 additions and 2 deletions

View File

@@ -718,6 +718,7 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
private bool CheckCustomizePlusApiInternal()
{
return false;
try
{
var version = _customizePlusApiVersion.InvokeFunc();
@@ -775,6 +776,7 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
private bool CheckHeelsApiInternal()
{
return false;
try
{
return _heelsGetApiVersion.InvokeFunc() is { Item1: 1, Item2: >= 0 };
@@ -787,6 +789,7 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
private bool CheckHonorificApiInternal()
{
return false;
try
{
return _honorificApiVersion.InvokeFunc() is { Item1: 2, Item2: >= 0 };