wielding cleanup (#10525)

This commit is contained in:
Nemanja
2022-08-11 18:53:35 -04:00
committed by GitHub
parent c8f8bf68f0
commit 98cdb12b4f
3 changed files with 35 additions and 33 deletions

View File

@@ -12,7 +12,7 @@ namespace Content.Server.Wieldable.Components
public SoundSpecifier? WieldSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg");
[DataField("unwieldSound")]
public SoundSpecifier? UnwieldSound = default!;
public SoundSpecifier? UnwieldSound;
/// <summary>
/// Number of free hands required (excluding the item itself) required
@@ -23,6 +23,7 @@ namespace Content.Server.Wieldable.Components
public bool Wielded = false;
[DataField("wieldedInhandPrefix")]
public string WieldedInhandPrefix = "wielded";
public string? OldInhandPrefix = null;