diff --git a/Content.Shared/CCVar/CCVars.Interface.cs b/Content.Shared/CCVar/CCVars.Interface.cs index 569303f1cf..3779f521c7 100644 --- a/Content.Shared/CCVar/CCVars.Interface.cs +++ b/Content.Shared/CCVar/CCVars.Interface.cs @@ -8,13 +8,13 @@ public sealed partial class CCVars /// The sound played when clicking a UI button /// public static readonly CVarDef UIClickSound = - CVarDef.Create("interface.click_sound", "/Audio/UserInterface/click.ogg", CVar.REPLICATED); + CVarDef.Create("interface.click_sound", "/Audio/_Sunrise/UserInterface/button_click.ogg", CVar.REPLICATED); /// /// The sound played when the mouse hovers over a clickable UI element /// public static readonly CVarDef UIHoverSound = - CVarDef.Create("interface.hover_sound", "/Audio/UserInterface/hover.ogg", CVar.REPLICATED); + CVarDef.Create("interface.hover_sound", "/Audio/_Sunrise/UserInterface/button_hover.ogg", CVar.REPLICATED); /// /// The layout style of the UI diff --git a/Resources/Audio/_Sunrise/UserInterface/buttonclick.ogg b/Resources/Audio/_Sunrise/UserInterface/button_click.ogg similarity index 100% rename from Resources/Audio/_Sunrise/UserInterface/buttonclick.ogg rename to Resources/Audio/_Sunrise/UserInterface/button_click.ogg diff --git a/Resources/Audio/_Sunrise/UserInterface/buttonrollover.ogg b/Resources/Audio/_Sunrise/UserInterface/button_hover.ogg similarity index 100% rename from Resources/Audio/_Sunrise/UserInterface/buttonrollover.ogg rename to Resources/Audio/_Sunrise/UserInterface/button_hover.ogg