diff --git a/Dalamud/Interface/UiBuilder.cs b/Dalamud/Interface/UiBuilder.cs
index 9f60aba6a..ea0e21e97 100644
--- a/Dalamud/Interface/UiBuilder.cs
+++ b/Dalamud/Interface/UiBuilder.cs
@@ -219,6 +219,12 @@ public interface IUiBuilder
///
bool ShouldUseReducedMotion { get; }
+ ///
+ /// Gets a value indicating whether the user has enabled the "Enable sound effects for plugin windows" setting.
+ /// This setting is effected by the in-game "System Sounds" option and volume.
+ ///
+ bool PluginUISoundEffectsEnabled { get; }
+
///
/// Loads an ULD file that can load textures containing multiple icons in a single texture.
///
@@ -560,6 +566,9 @@ public sealed class UiBuilder : IDisposable, IUiBuilder
///
public bool ShouldUseReducedMotion => Service.Get().ReduceMotions ?? false;
+ ///
+ public bool PluginUISoundEffectsEnabled => Service.Get().EnablePluginUISoundEffects;
+
///
/// Gets or sets a value indicating whether statistics about UI draw time should be collected.
///