mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-09 03:47:26 +08:00
[F] SinglePlayer without remove mask
This commit is contained in:
@@ -47,14 +47,6 @@ public class BasicFix
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HarmonyPrefix]
|
|
||||||
[HarmonyPatch(typeof(NetHttpClient), "CheckServerHash")]
|
|
||||||
private static bool CheckServerHash(ref bool __result)
|
|
||||||
{
|
|
||||||
__result = true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HarmonyPrefix]
|
[HarmonyPrefix]
|
||||||
[HarmonyPatch(typeof(GameManager), "CalcSpecialNum")]
|
[HarmonyPatch(typeof(GameManager), "CalcSpecialNum")]
|
||||||
private static bool CalcSpecialNum(ref int __result)
|
private static bool CalcSpecialNum(ref int __result)
|
||||||
@@ -81,4 +73,12 @@ public class BasicFix
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HarmonyPrefix]
|
||||||
|
[HarmonyPatch(typeof(NetHttpClient), "CheckServerHash")]
|
||||||
|
private static bool CheckServerHash(ref bool __result)
|
||||||
|
{
|
||||||
|
__result = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ namespace AquaMai.UX
|
|||||||
{
|
{
|
||||||
left.transform.position = Vector3.zero;
|
left.transform.position = Vector3.zero;
|
||||||
right.localScale = Vector3.zero;
|
right.localScale = Vector3.zero;
|
||||||
|
GameObject.Find("Mask").transform.position = new Vector3(540f, 0f, 0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HarmonyPrefix]
|
[HarmonyPrefix]
|
||||||
|
|||||||
Reference in New Issue
Block a user