This commit is contained in:
committed by
GitHub
parent
c5f7c61041
commit
cecf87997b
@@ -6,7 +6,7 @@ namespace Content.Server.Botany.Components;
|
||||
// TODO: This should probably be merged with SliceableFood somehow or made into a more generic Choppable.
|
||||
|
||||
[RegisterComponent]
|
||||
[Access(typeof(LogSystem))]
|
||||
[Friend(typeof(LogSystem))]
|
||||
public sealed class LogComponent : Component
|
||||
{
|
||||
[DataField("spawnedPrototype", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
||||
|
||||
@@ -4,7 +4,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
||||
namespace Content.Server.Botany.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
[Access(typeof(BotanySystem))]
|
||||
[Friend(typeof(BotanySystem))]
|
||||
public sealed class ProduceComponent : Component
|
||||
{
|
||||
[DataField("targetSolution")] public string SolutionName { get; set; } = "food";
|
||||
|
||||
@@ -3,7 +3,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
||||
|
||||
namespace Content.Server.Botany.Components
|
||||
{
|
||||
[RegisterComponent, Access(typeof(BotanySystem))]
|
||||
[RegisterComponent, Friend(typeof(BotanySystem))]
|
||||
public sealed class SeedComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -3,7 +3,7 @@ using Content.Server.Botany.Systems;
|
||||
namespace Content.Server.Botany.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
[Access(typeof(SeedExtractorSystem))]
|
||||
[Friend(typeof(SeedExtractorSystem))]
|
||||
public sealed class SeedExtractorComponent : Component
|
||||
{
|
||||
// TODO: Upgradeable machines.
|
||||
|
||||
Reference in New Issue
Block a user