Browse Source

Fixed bug causing base mass to ignore scale

tags/v0.7.0
Fen Dweller 7 years ago
parent
commit
c9e1f99cfd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      game.js

+ 1
- 1
game.js View File

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


Loading…
Cancel
Save