Files
tbd-station-14/Content.Server/Armor/ArmorSystem.cs
2022-05-13 17:59:03 +10:00

20 lines
525 B
C#

using Content.Shared.Damage;
namespace Content.Server.Armor
{
public sealed class ArmorSystem : EntitySystem
{
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<ArmorComponent, DamageModifyEvent>(OnDamageModify);
}
private void OnDamageModify(EntityUid uid, ArmorComponent component, DamageModifyEvent args)
{
args.Damage = DamageSpecifier.ApplyModifierSet(args.Damage, component.Modifiers);
}
}
}