Browse Source

Fixed a broken selector for the verbose text button

tags/v1.0.0
Fen Dweller 6 years ago
parent
commit
c3ab0b1442
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      game.js

+ 1
- 1
game.js View File

@@ -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});
}


Loading…
Cancel
Save