first commit
This commit is contained in:
31
NitroxPatcher/Patches/Dynamic/SeaDragon_GrabExosuit_Patch.cs
Normal file
31
NitroxPatcher/Patches/Dynamic/SeaDragon_GrabExosuit_Patch.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Reflection;
|
||||
using NitroxClient.Communication.Abstract;
|
||||
using NitroxClient.GameLogic;
|
||||
using NitroxClient.MonoBehaviours.Vehicles;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.Helper;
|
||||
using NitroxModel.Packets;
|
||||
|
||||
namespace NitroxPatcher.Patches.Dynamic;
|
||||
|
||||
/// <summary>
|
||||
/// Broadcasts the exosuit grab by Sea Dragons (if local player has remote control of them) and temporarily disables exosuit's position sync while they're grabbed.
|
||||
/// </summary>
|
||||
public sealed partial class SeaDragon_GrabExosuit_Patch : NitroxPatch, IDynamicPatch
|
||||
{
|
||||
public static readonly MethodInfo TARGET_METHOD = Reflect.Method((SeaDragon t) => t.GrabExosuit(default));
|
||||
|
||||
public static void Prefix(SeaDragon __instance, Exosuit exosuit)
|
||||
{
|
||||
if (exosuit.TryGetComponent(out VehicleMovementReplicator vehicleMovementReplicator))
|
||||
{
|
||||
vehicleMovementReplicator.enabled = false;
|
||||
}
|
||||
|
||||
if (__instance.TryGetNitroxId(out NitroxId seaDragonId) && Resolve<SimulationOwnership>().HasAnyLockType(seaDragonId) &&
|
||||
exosuit.TryGetNitroxId(out NitroxId targetId))
|
||||
{
|
||||
Resolve<IPacketSender>().Send(new SeaDragonGrabExosuit(seaDragonId, targetId));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user