* Implement emergency lights reacting to lost power * Add emergency light sprites Remove shared emergency light component * Remove unused import * Remove EmergencyLight NetID * Add rich description Change comments Add license Implement ExposeData Co-authored-by: Julian Giebel <j.giebel@netrocks.info>
27 lines
546 B
C#
27 lines
546 B
C#
namespace Content.Server
|
|
{
|
|
|
|
public static class IgnoredComponents
|
|
{
|
|
|
|
public static string[] List => new [] {
|
|
"ConstructionGhost",
|
|
"IconSmooth",
|
|
"SubFloorHide",
|
|
"LowWall",
|
|
"ReinforcedWall",
|
|
"Window",
|
|
"CharacterInfo",
|
|
"InteractionOutline",
|
|
"MeleeWeaponArcAnimation",
|
|
"AnimationsTest",
|
|
"ItemStatus",
|
|
"Marker",
|
|
"Clickable",
|
|
"RadiatingLight",
|
|
};
|
|
|
|
}
|
|
|
|
}
|