Skip to content

Commit cd03099

Browse files
committed
fix: notification sound comes back on now
1 parent 416a484 commit cd03099

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# UnderScript Changelog
22

3+
## Version 0.60.4 (2025-03-18)
4+
1. Fixed notification sound turning off permanently
5+
36
## Version 0.60.3 (2025-03-17)
47
1. Due to popular demand, you are now prompted to keep `@underscript`
58
1. Fixes some bugs with toasts
69

710
## Version 0.60.2 (2025-03-16)
8-
1. Fixed quest progress noification (probably)
11+
1. Fixed quest progress notification (probably)
912

1013
## Version 0.60.1 (2025-03-15)
1114
The great plugin (& bug fix) update

src/base/chat/notify.new.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let notified = false;
1919

2020
eventManager.on('preChat:getHistory Chat:getHistory', function enable(data) {
2121
if (disabled || global('soundsEnabled')) {
22-
if (disabled === false) {
22+
if (disabled !== 'history') {
2323
globalSet('soundsEnabled', this.event === 'Chat:getHistory');
2424
}
2525
disabled = !disabled;

0 commit comments

Comments
 (0)