Files
tbd-station-14/Content.Server/IgnoredComponents.cs
metalgearsloth 2f8bd10b47 Shared subfloor system (#3590)
* Shared subfloor system

Will also cull the broadphase for server a lot.

* Nullable subfloor

* Snapgrid nullable

* Actually use ComponentDependency

Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
2021-03-13 14:46:22 +11:00

24 lines
602 B
C#

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server
{
public static class IgnoredComponents
{
public static string[] List => new [] {
"ConstructionGhost",
"IconSmooth",
"LowWall",
"ReinforcedWall",
"InteractionOutline",
"MeleeWeaponArcAnimation",
"AnimationsTest",
"ItemStatus",
"Marker",
"Clickable",
"RadiatingLight",
"Icon",
"ClientEntitySpawner",
"ToySingularity"
};
}
}