Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com> Co-authored-by: Jezithyr <jmaster9999@gmail.com> Co-authored-by: Jezithyr <Jezithyr@gmail.com> Co-authored-by: Visne <39844191+Visne@users.noreply.github.com> Co-authored-by: wrexbe <wrexbe@protonmail.com> Co-authored-by: wrexbe <81056464+wrexbe@users.noreply.github.com>
22 lines
551 B
C#
22 lines
551 B
C#
// ReSharper disable ArrangeTrailingCommaInMultilineLists
|
|
namespace Content.Server.Entry
|
|
{
|
|
public static class IgnoredComponents
|
|
{
|
|
public static string[] List => new[] {
|
|
"ConstructionGhost",
|
|
"IconSmooth",
|
|
"InteractionOutline",
|
|
"AnimationsTest",
|
|
"ItemStatus",
|
|
"Marker",
|
|
"Clickable",
|
|
"Icon",
|
|
"ClientEntitySpawner",
|
|
"HandheldGPS",
|
|
"CableVisualizer",
|
|
"EnsnareableVisualizer",
|
|
};
|
|
}
|
|
}
|