From c3ab0b1442ff183b5e40d20948283b255c1fe40e Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 28 Dec 2018 21:22:08 -0600 Subject: [PATCH] Fixed a broken selector for the verbose text button --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 5a86e53..ff46e7f 100644 --- a/game.js +++ b/game.js @@ -3865,7 +3865,7 @@ function update(lines = [], active=true) if (deltaHeight / window.innerHeight >= 0.2 && verbose && autoVerbose) { update(["Switching to simple text!", newline], false); autoVerbose = false; - let button = document.querySelector("button-option-toggle_verbose"); + let button = document.querySelector("#button-option-toggle_verbose"); toggle_verbose({"target": button}); }