2020-12-22 21:39:53 +00:00
|
|
|
|
using QSB.Patches;
|
|
|
|
|
|
2020-12-31 12:10:55 +00:00
|
|
|
|
namespace QSB.QuantumSync.Patches
|
2020-12-22 21:39:53 +00:00
|
|
|
|
{
|
2021-01-18 12:33:07 +00:00
|
|
|
|
public class ClientQuantumPatches : QSBPatch
|
2020-12-22 21:39:53 +00:00
|
|
|
|
{
|
|
|
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
|
|
|
|
|
|
2021-01-26 23:41:53 +00:00
|
|
|
|
public override void DoPatches() => QSBCore.Helper.HarmonyHelper.AddPrefix<QuantumMoon>("ChangeQuantumState", typeof(ClientQuantumPatches), nameof(ReturnFalsePatch));
|
2020-12-22 21:39:53 +00:00
|
|
|
|
|
2020-12-24 10:06:17 +00:00
|
|
|
|
public static bool ReturnFalsePatch() => false;
|
2020-12-22 21:39:53 +00:00
|
|
|
|
}
|
2020-12-24 10:06:17 +00:00
|
|
|
|
}
|