* DummyWireComponent * connector wire proto names * comment fix * Uses IMapInit * Removes unused icon components * Moves component to client * Renames component Co-authored-by: py01 <pyronetics01@gmail.com>
27 lines
546 B
C#
27 lines
546 B
C#
namespace Content.Server
|
|
{
|
|
|
|
public static class IgnoredComponents
|
|
{
|
|
|
|
public static string[] List => new [] {
|
|
"ConstructionGhost",
|
|
"IconSmooth",
|
|
"SubFloorHide",
|
|
"LowWall",
|
|
"ReinforcedWall",
|
|
"InteractionOutline",
|
|
"MeleeWeaponArcAnimation",
|
|
"AnimationsTest",
|
|
"ItemStatus",
|
|
"Marker",
|
|
"Clickable",
|
|
"RadiatingLight",
|
|
"Icon",
|
|
"ClientEntitySpawner"
|
|
};
|
|
|
|
}
|
|
|
|
}
|