mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
12 lines
260 B
C#
12 lines
260 B
C#
using QSB.Patches;
|
|
|
|
namespace QSB.GeyserSync.Patches
|
|
{
|
|
internal class GeyserPatches : QSBPatch
|
|
{
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
|
|
|
|
public override void DoPatches() => Empty("GeyserController_Update");
|
|
}
|
|
}
|