mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-06 00:39:55 +00:00
0fef22cbf1
This reverts commit caf952a3
18 lines
410 B
C#
18 lines
410 B
C#
using QSB.EchoesOfTheEye.AlarmTotemSync.WorldObjects;
|
|
using QSB.Messaging;
|
|
using QSB.Patches;
|
|
|
|
namespace QSB.EchoesOfTheEye.AlarmTotemSync.Messages;
|
|
|
|
public class SetEnabledMessage : QSBWorldObjectMessage<QSBAlarmTotem, bool>
|
|
{
|
|
public SetEnabledMessage(bool data) : base(data) { }
|
|
|
|
public override void OnReceiveRemote()
|
|
{
|
|
if ()
|
|
|
|
QSBPatch.RemoteCall(() => WorldObject.AttachedObject.set(Data));
|
|
}
|
|
}
|