Skip to content

Commit 0ccdb15

Browse files
committed
fix: Mod mute now works
1 parent eb0747c commit 0ccdb15

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/base/chatContext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ eventManager.on('ChatDetected' , () => {
105105
updateIgnoreText(id);
106106
} else if (e.target === mute[0]) {
107107
if (muteDisabled) return;
108-
timeout(id, muteTime.val());
108+
timeout(`${id}`, muteTime.val());
109109
} else if (e.target === message[0]) {
110110
openPrivateRoom(id, name);
111111
}

src/meta.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// @require https://raw.githubusercontent.com/feildmaster/SimpleToast/1.12.0/simpletoast.js
55
// @version 0.19.1
66
// @author feildmaster
7+
// @history 0.19.2 - Fixed mod muting
78
// @history 0.19.1 - Fixed link detection to not randomly turn www into links. Do it somewhat sane at least
89
// @history 0.19.0 - Added Menu and Settings. Fixed unignoring. Added settings to disable nearly everything in the script.
910
// Added ability to disable card draw announcements, or make them toasts. Added setting to turn legendary draws into toasts.

0 commit comments

Comments
 (0)