Много чего

This commit is contained in:
BIGZi0348
2025-03-16 18:00:19 +03:00
parent 77f3f0ee70
commit c6eda2a60a
24 changed files with 1385 additions and 271 deletions

View File

@@ -0,0 +1,24 @@
using Content.Shared.Examine;
namespace Content.Server._White.ContractorIDCard;
public sealed class ContractorIDCardSystem : EntitySystem
{
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<ContractorIDCardComponent, ExaminedEvent>(OnExamined);
}
public void OnExamined(Entity<ContractorIDCardComponent> ent, ref ExaminedEvent args)
{
if (!args.IsInDetailsRange)
return;
if (ent.Comp.Details == string.Empty)
return;
args.PushMarkup(ent.Comp.Details);
}
}