diff options
author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2025-03-01 12:36:47 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2025-03-01 12:36:47 -0700 |
commit | 8dacee8f73633131fd68935c1e2493dc4beec837 (patch) | |
tree | fc9adf76fce4761b01208ba2f44e72a6838244aa /src/engine/config | |
parent | d903bd9a13e790cf42c84c3dc59bf89ffeae1d80 (diff) | |
download | the-abstraction-engine-8dacee8f73633131fd68935c1e2493dc4beec837.tar.gz the-abstraction-engine-8dacee8f73633131fd68935c1e2493dc4beec837.zip |
updates
Diffstat (limited to 'src/engine/config')
-rw-r--r-- | src/engine/config/sounds.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/config/sounds.ts b/src/engine/config/sounds.ts index 5900ef0..46870db 100644 --- a/src/engine/config/sounds.ts +++ b/src/engine/config/sounds.ts @@ -19,7 +19,7 @@ export const LambdaTransformSound: SoundSpec = { volume: 0.3, }; -export const LambdaSave: SoundSpec = { +export const EditorSave: SoundSpec = { name: "lambdaSave", url: "/assets/sound/lambda_save.wav", volume: 0.3, @@ -83,7 +83,7 @@ export const Music: SoundSpec = { export const SOUND_SPECS: SoundSpec[] = [ MovingSound, LambdaTransformSound, - LambdaSave, + EditorSave, Failure, ModalOpen, ModalClose, |