32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|