Explorar el Código

Fixed bug causing base mass to ignore scale

tags/v0.7.0
Fen Dweller hace 7 años
padre
commit
c9e1f99cfd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      game.js

+ 1
- 1
game.js Ver fichero

@@ -1180,7 +1180,7 @@ let macro =
},

get totalMass() {
let base = this.baseMass;
let base = Math.pow(this.baseMass,3);

if (this.hasTail) {
base += this.tailMass * this.tailCount;


Cargando…
Cancelar
Guardar