mirror of https://github.com/hykilpikonna/AquaDX
24 lines
512 B
C#
24 lines
512 B
C#
using AMDaemon;
|
|
using HarmonyLib;
|
|
|
|
namespace AquaMai.Fix;
|
|
|
|
public class ForceAsServer
|
|
{
|
|
[HarmonyPrefix]
|
|
[HarmonyPatch(typeof(LanInstall), "IsServer", MethodType.Getter)]
|
|
private static bool PreIsServer(ref bool __result)
|
|
{
|
|
__result = true;
|
|
return false;
|
|
}
|
|
|
|
[HarmonyPrefix]
|
|
[HarmonyPatch(typeof(Network), "IsLanAvailable", MethodType.Getter)]
|
|
private static bool PreIsLanAvailable(ref bool __result)
|
|
{
|
|
__result = false;
|
|
return false;
|
|
}
|
|
}
|