# Conflicts: # .github/CODEOWNERS # Content.Client/Overlays/StencilOverlay.cs # Content.Server/Chemistry/EntitySystems/InjectorSystem.cs # Content.Server/GameTicking/Commands/SetGamePresetCommand.cs # Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs # Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs # Content.Shared/Clothing/Components/ClothingComponent.cs # Content.Shared/Humanoid/HumanoidCharacterAppearance.cs # Content.Shared/Humanoid/SkinColor.cs # Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml
29 lines
788 B
C#
29 lines
788 B
C#
// ReSharper disable ArrangeTrailingCommaInMultilineLists
|
|
namespace Content.Server.Entry
|
|
{
|
|
public static class IgnoredComponents
|
|
{
|
|
public static string[] List => new[] {
|
|
"CP14WaveShader", // CP14 Wave shader
|
|
"ConstructionGhost",
|
|
"IconSmooth",
|
|
"InteractionOutline",
|
|
"Marker",
|
|
"GuidebookControlsTest",
|
|
"GuideHelp",
|
|
"Clickable",
|
|
"Icon",
|
|
"CableVisualizer",
|
|
"SolutionItemStatus",
|
|
"UIFragment",
|
|
"PdaBorderColor",
|
|
"InventorySlots",
|
|
"LightFade",
|
|
"HolidayRsiSwap",
|
|
"OptionsVisualizer",
|
|
"AnomalyScannerScreen",
|
|
"MultipartMachineGhost"
|
|
};
|
|
}
|
|
}
|