mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
15 lines
344 B
C#
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;
|
|
} |