Files
crystall-punk-14/Content.Server/Entry/IgnoredComponents.cs
Ed 1df3ed177b Merge remote-tracking branch 'upstream/master' into ed-27-09-2024-upstream
# Conflicts:
#	Content.Server/Explosion/EntitySystems/TriggerSystem.cs
2024-09-27 10:22:05 +03:00

28 lines
767 B
C#

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server.Entry
{
public static class IgnoredComponents
{
public static string[] List => new[] {
"CP14WaveShader", // CP14 Wave shader
"CP14WorldSprite", // CP14 World Sprite
"ConstructionGhost",
"IconSmooth",
"InteractionOutline",
"Marker",
"GuidebookControlsTest",
"GuideHelp",
"Clickable",
"Icon",
"CableVisualizer",
"SolutionItemStatus",
"UIFragment",
"PdaBorderColor",
"InventorySlots",
"LightFade",
"HolidayRsiSwap",
"OptionsVisualizer"
};
}
}