瀏覽代碼

Fixed error on auto simple text trigger. Removed extra log statements.

tags/v1.0.0
Fen Dweller 6 年之前
父節點
當前提交
6438b3fd04
共有 1 個檔案被更改,包括 3 行新增4 行删除
  1. +3
    -4
      game.js

+ 3
- 4
game.js 查看文件

@@ -2136,8 +2136,6 @@ function grind()
if (macro.femaleParts) if (macro.femaleParts)
area += macro.vaginaArea; area += macro.vaginaArea;


console.log(area)

let prey = getPrey(biome, area); let prey = getPrey(biome, area);


let line = describe("grind", prey, macro, verbose); let line = describe("grind", prey, macro, verbose);
@@ -3847,7 +3845,9 @@ function update(lines = [], active=true)
if (deltaHeight / window.innerHeight >= 0.2 && verbose && autoVerbose) { if (deltaHeight / window.innerHeight >= 0.2 && verbose && autoVerbose) {
update(["Switching to simple text!", newline], false); update(["Switching to simple text!", newline], false);
autoVerbose = false; autoVerbose = false;
toggle_verbose();
let button = document.querySelector("button-option-toggle_verbose");

toggle_verbose({"target": button});
} }
} }


@@ -4161,7 +4161,6 @@ function disable_button(name) {
} }


function enable_panel(name) { function enable_panel(name) {
console.log(name);
document.getElementById("action-part-" + name).style.display = "inline"; document.getElementById("action-part-" + name).style.display = "inline";
} }




Loading…
取消
儲存