* attuning to items start * verbs attuning, forgot oldest attuning * Update CP14SharedMagicAttuningSystem.cs * some fixes * add deattuning * fix popups on owner * file restructurization * MORE FOLDER RENAMING GODD * magic via holding yea! * fix deattuning * vfx bugfixs * wearing magic items * Cure wounds spell * refactor spells * more redo * finish refactor
10 lines
301 B
C#
10 lines
301 B
C#
namespace Content.Shared._CP14.MagicSpellStorage;
|
|
|
|
/// <summary>
|
|
/// The ability to access spellcasting is limited by the attuning requirement
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SpellStorageSystem))]
|
|
public sealed partial class CP14SpellStorageRequireAttuneComponent : Component
|
|
{
|
|
}
|