Fix stamp sound (#17955)

* Convert stamp sounds to mono

* shhh

* something something stamp sounds

* alphabetical is best betical

* the voices
This commit is contained in:
crazybrain23
2023-07-13 07:20:39 +01:00
committed by GitHub
parent a364295ad2
commit 480ac253d0
6 changed files with 101 additions and 65 deletions

View File

@@ -17,6 +17,9 @@ namespace Content.Shared.Paper
public string StampState { get; set; } = "paper_stamp-generic";
[DataField("sound")]
public SoundSpecifier? Sound;
public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Items/Stamp/thick_stamp_sub.ogg")
{
Params = AudioParams.Default.WithVolume(-2f).WithMaxDistance(5f)
};
}
}