Add smoking pipe (#11419)
* Add smoking pipe * fix access issue * try fix init issue * fixed for real
This commit is contained in:
17
Content.Server/Nutrition/Components/SmokingPipeComponent.cs
Normal file
17
Content.Server/Nutrition/Components/SmokingPipeComponent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Content.Server.Nutrition.EntitySystems;
|
||||
using Content.Shared.Containers.ItemSlots;
|
||||
|
||||
namespace Content.Server.Nutrition.Components
|
||||
{
|
||||
/// <summary>
|
||||
/// A reusable vessel for smoking
|
||||
/// </summary>
|
||||
[RegisterComponent, Access(typeof(SmokingSystem))]
|
||||
public sealed class SmokingPipeComponent : Component
|
||||
{
|
||||
public const string BowlSlotId = "bowl_slot";
|
||||
|
||||
[DataField("bowl_slot")]
|
||||
public ItemSlot BowlSlot = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user