first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System.Reflection;
|
||||
using NitroxClient.GameLogic;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.GameLogic.Entities.Metadata;
|
||||
using NitroxModel.Helper;
|
||||
|
||||
namespace NitroxPatcher.Patches.Dynamic;
|
||||
|
||||
public sealed partial class StarshipDoor_OnDoorToggle_Patch : NitroxPatch, IDynamicPatch
|
||||
{
|
||||
private static readonly MethodInfo TARGET_METHOD = Reflect.Method((StarshipDoor t) => t.OnDoorToggle());
|
||||
|
||||
public static void Postfix(StarshipDoor __instance)
|
||||
{
|
||||
if (__instance.TryGetIdOrWarn(out NitroxId id))
|
||||
{
|
||||
StarshipDoorMetadata starshipDoorMetadata = new(__instance.doorLocked, __instance.doorOpen);
|
||||
Resolve<Entities>().BroadcastMetadataUpdate(id, starshipDoorMetadata);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user