quantum-space-buddies/QSB/GeyserSync/Patches/GeyserPatches.cs

13 lines
379 B
C#
Raw Normal View History

2021-03-25 21:10:20 +00:00
using QSB.Patches;
namespace QSB.GeyserSync.Patches
{
2021-03-25 22:01:10 +00:00
internal class GeyserPatches : QSBPatch
2021-03-25 21:10:20 +00:00
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
public override void DoPatches() => QSBCore.HarmonyHelper.EmptyMethod<GeyserController>("Update");
public override void DoUnpatches() => QSBCore.HarmonyHelper.Unpatch<GeyserController>("Update");
}
}