* initial commit * adds astronav cartridge to QM locker * changes requested in review * fix merge conflicts * fixes the statuscontrol disappearing if you eject the cartridge but still have it installed * fix notificationsenabled on salv pda proto * fixes lingering statuscontrol on eject while held --------- Co-authored-by: archrbx <punk.gear5260@fastmail.com>
16 lines
358 B
C#
16 lines
358 B
C#
using Content.Shared.GPS.Components;
|
|
using Content.Client.GPS.UI;
|
|
using Content.Client.Items;
|
|
|
|
namespace Content.Client.GPS.Systems;
|
|
|
|
public sealed class HandheldGpsSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
Subs.ItemStatus<HandheldGPSComponent>(ent => new HandheldGpsStatusControl(ent));
|
|
}
|
|
}
|