quantum-space-buddies/QSB/QuantumSync/Patches/ClientQuantumPatches.cs
Mister_Nebula 6c2a7c2b68 shit
2021-01-26 23:41:53 +00:00

13 lines
413 B
C#

using QSB.Patches;
namespace QSB.QuantumSync.Patches
{
public class ClientQuantumPatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
public override void DoPatches() => QSBCore.Helper.HarmonyHelper.AddPrefix<QuantumMoon>("ChangeQuantumState", typeof(ClientQuantumPatches), nameof(ReturnFalsePatch));
public static bool ReturnFalsePatch() => false;
}
}