first commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Reflection;
|
||||
using NitroxClient.GameLogic;
|
||||
using NitroxClient.GameLogic.Spawning.Metadata.Extractor;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.GameLogic.Entities.Metadata;
|
||||
using NitroxModel.Helper;
|
||||
|
||||
namespace NitroxPatcher.Patches.Dynamic;
|
||||
|
||||
public sealed partial class SeaMoth_onLightsToggled_Patch : NitroxPatch, IDynamicPatch
|
||||
{
|
||||
private static readonly MethodInfo TARGET_METHOD = Reflect.Method((SeaMoth t) => t.onLightsToggled(default(bool)));
|
||||
|
||||
public static void Postfix(SeaMoth __instance)
|
||||
{
|
||||
if (__instance.TryGetIdOrWarn(out NitroxId id))
|
||||
{
|
||||
SeamothMetadata metadata = Resolve<SeamothMetadataExtractor>().Extract(__instance);
|
||||
Resolve<Entities>().BroadcastMetadataUpdate(id, metadata);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user