notifier: add option to disable notification sounds

This commit is contained in:
Lotto
2018-02-27 14:09:44 +01:00
parent cc8e8f7006
commit 13b03a4710
3 changed files with 20 additions and 4 deletions

View File

@@ -75,4 +75,14 @@ public interface RuneLiteConfig extends Config
{
return false;
}
@ConfigItem(
keyName = "notificationSound",
name = "Enable sound on notifications",
description = "Enables the playing of a beep sound when notifications are displayed"
)
default boolean enableNotificationSound()
{
return true;
}
}