mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
16 lines
357 B
C#
16 lines
357 B
C#
using HarmonyLib;
|
|
using QSB.Patches;
|
|
|
|
namespace QSB.GeyserSync.Patches
|
|
{
|
|
[HarmonyPatch]
|
|
internal class GeyserPatches : QSBPatch
|
|
{
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
|
|
|
|
[HarmonyPrefix]
|
|
[HarmonyPatch(typeof(GeyserController), nameof(GeyserController.Update))]
|
|
public static bool Empty()
|
|
=> false;
|
|
}
|
|
} |