fish-station/Content.Server/Plants/Components/RandomPottedPlantComponent.cs
Vera Aguilera Puerto c5f7c61041
Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02:00

17 lines
439 B
C#

using Content.Server.Plants.Systems;
namespace Content.Server.Plants.Components
{
[RegisterComponent]
[Access(typeof(RandomPottedPlantSystem))]
public sealed class RandomPottedPlantComponent : Component
{
[ViewVariables(VVAccess.ReadOnly)]
[DataField("selected")]
public string? State;
[ViewVariables(VVAccess.ReadOnly)]
[DataField("plastic")]
public bool Plastic;
}
}