ソースを参照

Fixed bug causing base mass to ignore scale

tags/v0.7.0
Fen Dweller 7年前
コミット
c9e1f99cfd
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      game.js

+ 1
- 1
game.js ファイルの表示

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


読み込み中…
キャンセル
保存