first commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using NitroxClient.Communication.Abstract;
|
||||
using NitroxClient.Communication.Packets.Processors.Abstract;
|
||||
using NitroxClient.MonoBehaviours;
|
||||
using NitroxClient.Unity.Helper;
|
||||
using NitroxModel_Subnautica.Packets;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NitroxClient.Communication.Packets.Processors
|
||||
{
|
||||
public class CyclopsDamagePointHealthChangedProcessor : ClientPacketProcessor<CyclopsDamagePointRepaired>
|
||||
{
|
||||
private readonly IPacketSender packetSender;
|
||||
|
||||
public CyclopsDamagePointHealthChangedProcessor(IPacketSender packetSender)
|
||||
{
|
||||
this.packetSender = packetSender;
|
||||
}
|
||||
|
||||
public override void Process(CyclopsDamagePointRepaired packet)
|
||||
{
|
||||
GameObject gameObject = NitroxEntity.RequireObjectFrom(packet.Id);
|
||||
SubRoot cyclops = gameObject.RequireComponent<SubRoot>();
|
||||
|
||||
using (PacketSuppressor<CyclopsDamage>.Suppress())
|
||||
using (PacketSuppressor<CyclopsDamagePointRepaired>.Suppress())
|
||||
{
|
||||
cyclops.damageManager.damagePoints[packet.DamagePointIndex].liveMixin.AddHealth(packet.RepairAmount);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user