Refactored functions that calculate hacking time/exp gain/chance/ etc into a separate file

This commit is contained in:
danielyxie
2018-08-30 12:00:38 -05:00
parent 63cd269d5e
commit 5ede6be8e5
9 changed files with 188 additions and 252 deletions

View File

@@ -1,7 +1,6 @@
import {Engine} from "./engine";
import {Player} from "./Player";
import {Settings} from "./Settings";
import {Terminal} from "./Terminal";
import {clearEventListeners} from "../utils/uiHelpers/clearEventListeners";
import {createElement} from "../utils/uiHelpers/createElement";
import {createPopup} from "../utils/uiHelpers/createPopup";
@@ -62,7 +61,6 @@ function iTutorialStart() {
}
Engine.loadTerminalContent();
Terminal.resetTerminalInput();
//Don't autosave during this interactive tutorial
Engine.Counters.autoSaveCounter = Infinity;