* - add: Cult buff protects against spacing. * - add: Predict RunicDoor. * - add: Loc. * - fix: Missing includes. * - add: Revive rune popups. * - tweak: Buff rune. * - fix: Buff rune.
14 lines
314 B
C#
14 lines
314 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._White.Cult.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class ConstructComponent : Component
|
|
{
|
|
[DataField("actions")]
|
|
public List<EntProtoId> Actions = new();
|
|
|
|
[ViewVariables]
|
|
public List<EntityUid?> ActionEntities = new();
|
|
}
|