mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
13 lines
388 B
C#
13 lines
388 B
C#
using QSB.Patches;
|
|
|
|
namespace QSB.GeyserSync.Patches
|
|
{
|
|
internal class GeyserPatches : QSBPatch
|
|
{
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
|
|
|
|
public override void DoPatches() => QSBCore.HarmonyHelper.EmptyMethod<GeyserController>("Update");
|
|
public override void DoUnpatches() => QSBCore.HarmonyHelper.Unpatch<GeyserController>("Update");
|
|
}
|
|
}
|