Skip to content

Commit

Permalink
Change the default sound of popups opening to match the one from the …
Browse files Browse the repository at this point in the history
…game itself
  • Loading branch information
haroldiedema committed Aug 20, 2024
1 parent 912a259 commit f71510e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Umbra/src/Umbra.Sound.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ internal sealed class UmbraSound : IDisposable
private static bool Enabled { get; set; } = true;

[ConfigVariable("Sound.OpenPopupId", "General", "Sound", 0, 78)]
private static int OpenPopupId { get; set; } = 14;
private static int OpenPopupId { get; set; } = 1;

[ConfigVariable("Sound.ClosePopupId", "General", "Sound", 0, 78)]
private static int ClosePopupId { get; set; } = 15;
private static int ClosePopupId { get; set; } = 0;

[ConfigVariable("Sound.OpenWindowId", "General", "Sound", 0, 78)]
private static int OpenWindowId { get; set; } = 23;
Expand Down

0 comments on commit f71510e

Please sign in to comment.