Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -9,6 +9,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Spawners.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[Virtual]
|
||||
public class ConditionalSpawnerComponent : Component
|
||||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
|
||||
@@ -9,7 +9,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Spawners.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class RandomSpawnerComponent : ConditionalSpawnerComponent
|
||||
public sealed class RandomSpawnerComponent : ConditionalSpawnerComponent
|
||||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("rarePrototypes", customTypeSerializer:typeof(PrototypeIdListSerializer<EntityPrototype>))]
|
||||
|
||||
@@ -13,7 +13,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Spawners.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class TimedSpawnerComponent : Component, ISerializationHooks
|
||||
public sealed class TimedSpawnerComponent : Component, ISerializationHooks
|
||||
{
|
||||
[Dependency] private readonly IRobustRandom _robustRandom = default!;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user