Potted Plants Cleanup (#9196)

* pray for me

* yippee

* collision fix
This commit is contained in:
EmoGarbage404
2022-06-28 06:49:26 -04:00
committed by GitHub
parent 97c74d5903
commit ef3a02397a
4 changed files with 254 additions and 72 deletions

View File

@@ -1,17 +0,0 @@
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;
}
}