Fixed incorrect default.

This commit is contained in:
flash 2024-01-23 01:23:33 +00:00
parent a72e605097
commit 710283a119

View file

@ -129,8 +129,8 @@ const Umi = { UI: {} };
settings.define('soundEnableError', 'boolean', true);
settings.define('soundEnableServer', 'boolean', true);
settings.define('soundEnableIncoming', 'boolean', true);
settings.define('onlySoundOnMention', 'boolean', true);
settings.define('soundEnableOutgoing', 'boolean', false);
settings.define('onlySoundOnMention', 'boolean', false);
settings.define('soundEnableOutgoing', 'boolean', true);
settings.define('soundEnablePrivate', 'boolean', true);
settings.define('soundEnableForceLeave', 'boolean', true);
settings.define('minecraft', ['no', 'yes', 'old'], 'no');
@ -371,7 +371,7 @@ const Umi = { UI: {} };
sidebarAnimation = MamiAnimate({
duration: 500,
easing: 'easeOutExpo',
easing: 'outExpo',
update: update,
});
}