Storage warnings cleanup (#36196)

* Storage warnings cleanup

* Setting audio params on component
This commit is contained in:
J
2025-04-18 03:47:17 +00:00
committed by GitHub
parent 7d2ef2bd47
commit fa24960445
4 changed files with 10 additions and 10 deletions

View File

@@ -5,6 +5,6 @@ namespace Content.Server.Storage.Components;
[RegisterComponent]
public sealed partial class CursedEntityStorageComponent : Component
{
[DataField("cursedSound")]
public SoundSpecifier CursedSound = new SoundPathSpecifier("/Audio/Effects/teleport_departure.ogg");
[DataField]
public SoundSpecifier CursedSound = new SoundPathSpecifier("/Audio/Effects/teleport_departure.ogg", AudioParams.Default.WithVariation(0.125f));
}