Files
crystall-punk-14/Content.Server/Entry/IgnoredComponents.cs

24 lines
615 B
C#
Raw Normal View History

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server.Entry
{
public static class IgnoredComponents
{
public static string[] List => new [] {
"ConstructionGhost",
"IconSmooth",
"ReinforcedWall",
"InteractionOutline",
"MeleeWeaponArcAnimation",
"AnimationsTest",
"ItemStatus",
"Marker",
"Clickable",
2020-09-28 18:03:05 +00:00
"Icon",
"ClientEntitySpawner",
"CharacterInfo",
2022-02-19 12:16:44 -07:00
"ItemCabinetVisuals",
"HandheldGPS"
};
}
}