quantum-space-buddies/QSB/GeyserSync/Patches/GeyserPatches.cs
2023-07-28 19:30:57 +01:00

15 lines
344 B
C#

using HarmonyLib;
using QSB.Patches;
namespace QSB.GeyserSync.Patches;
[HarmonyPatch]
public class GeyserPatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
[HarmonyPrefix]
[HarmonyPatch(typeof(GeyserController), nameof(GeyserController.Update))]
public static bool Empty()
=> false;
}