* 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>
26 lines
665 B
C#
26 lines
665 B
C#
// ReSharper disable ArrangeTrailingCommaInMultilineLists
|
|
namespace Content.Server.Entry
|
|
{
|
|
public static class IgnoredComponents
|
|
{
|
|
public static string[] List => new[] {
|
|
"ConstructionGhost",
|
|
"IconSmooth",
|
|
"InteractionOutline",
|
|
"Marker",
|
|
"GuidebookControlsTest",
|
|
"GuideHelp",
|
|
"Clickable",
|
|
"Icon",
|
|
"CableVisualizer",
|
|
"SolutionItemStatus",
|
|
"UIFragment",
|
|
"PdaBorderColor",
|
|
"InventorySlots",
|
|
"LightFade",
|
|
"HolidayRsiSwap",
|
|
"OptionsVisualizer"
|
|
};
|
|
}
|
|
}
|