* fix: fix localisation in lathe ui * add: possible way to give admins access to fuckrules * add: handcuffs pick up and drop sounds * fix: fix missing drink glass sounds * fix: fix missing sound * add: all weapons now have unique pick up and drop sounds * add: recall spell sounds * add: cups are breakable now * fix: fix rifles wrong collection
24 lines
483 B
C#
24 lines
483 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server._White.Wizard.Magic.Other;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class InstantRecallComponent : Component
|
|
{
|
|
public EntityUid? Item;
|
|
|
|
/// <summary>
|
|
/// Sound to play on use.
|
|
/// </summary>
|
|
[DataField]
|
|
[ViewVariables]
|
|
public SoundSpecifier LinkSound;
|
|
|
|
/// <summary>
|
|
/// Sound to play on use.
|
|
/// </summary>
|
|
[DataField]
|
|
[ViewVariables]
|
|
public SoundSpecifier RecallSound;
|
|
}
|