mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
14 lines
442 B
C#
14 lines
442 B
C#
|
using QSB.Patches;
|
|||
|
|
|||
|
namespace QSB.QuantumSync
|
|||
|
{
|
|||
|
public class ClientQuantumStateChangePatches : QSBPatch
|
|||
|
{
|
|||
|
public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect;
|
|||
|
|
|||
|
public override void DoPatches() => QSBCore.Helper.HarmonyHelper.AddPrefix<SocketedQuantumObject>("ChangeQuantumState", typeof(ClientQuantumStateChangePatches), nameof(ChangeQuantumState));
|
|||
|
|
|||
|
public static bool ChangeQuantumState() => false;
|
|||
|
}
|
|||
|
}
|