* prayer system * verbs * localize * Praying changes * praying + cleanup * Revert "praying + cleanup" This reverts commit e8ee90f9f0be9a2eeb4d660359f0913c9e82aba3. * Prayers (actually) * forgot to remove this * slight fixes * veritius reviews * I did it * less HD images Co-authored-by: Just-a-Unity-Dev <just-a-unity-dev@users.noreply.github.com>
18 lines
461 B
C#
18 lines
461 B
C#
namespace Content.Server.Prayer
|
|
{
|
|
/// <summary>
|
|
/// Allows an entity to be prayed on in the context menu
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class PrayableComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// If bible users are only allowed to use this prayable entity
|
|
/// </summary>
|
|
[DataField("bibleUserOnly")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool BibleUserOnly;
|
|
}
|
|
}
|
|
|