* fix demiplane contetn filtering * fix day demiplanes * remove filled crystals from demiplanes * remove armored zombies * added candles in town crates * remove 20% unefficient of mana moving spells * fix #622 * revert random Viator commit * Update demiplane_rifts.yml
12 lines
357 B
C#
12 lines
357 B
C#
namespace Content.Shared._CP14.MagicSpellStorage.Components;
|
|
|
|
/// <summary>
|
|
/// Denotes that this item's spells can be accessed while wearing it on your body
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SpellStorageSystem))]
|
|
public sealed partial class CP14SpellStorageAccessWearingComponent : Component
|
|
{
|
|
[DataField]
|
|
public bool Wearing;
|
|
}
|