Procházet zdrojové kódy

Make some global objects const, at least

tags/v0.0.5
Fen Dweller před 5 roky
rodič
revize
ab5eb148c6
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: E80B35A6F11C3656
1 změnil soubory, kde provedl 6 přidání a 7 odebrání
  1. +6
    -7
      gorge.js

+ 6
- 7
gorge.js Zobrazit soubor

@@ -1,19 +1,18 @@
"use strict";

let belongings = {};
const belongings = {};

let ownedUpgrades = {};
let remainingUpgrades = [];
const ownedUpgrades = {};
const remainingUpgrades = [];
let showOwnedUpgrades = false;

let effects = {};
const effects = {};


let resources = {};
const resources = {};

let updateRate = 60;

let currentProductivity = {};
const currentProductivity = {};
let clickBonus = 0;
let clickVictim = "micro";



Načítá se…
Zrušit
Uložit