1 parent f13a4f2 commit 155951fCopy full SHA for 155951f
2 files changed
src/base/lobby/noMinigame.js
@@ -16,7 +16,7 @@ const setting = settings.register({
16
eventManager.on(':loaded:Play', () => {
17
globalSet('onload', function onload() {
18
window.game = undefined; // gets overriden if minigame loads
19
- window.saveBest = noop(); // gets overriden if minigame loads
+ window.saveBest = noop; // gets overriden if minigame loads
20
if (setting.value()) {
21
debug('Disabling minigames');
22
globalSet('mobile', true);
src/base/vanilla/quest.highlight.js
@@ -56,7 +56,7 @@ wrap(() => {
56
// Perhaps another tab found a quest at some point...?
57
clearHighlight();
58
}
59
- }).catch(noop());
+ }).catch(noop);
60
61
62
if (!localStorage.getItem('underscript.quest.clear')) {
0 commit comments