瀏覽代碼

All resource types are incremented now, not just food

tags/v0.0.1
Fen Dweller 7 年之前
父節點
當前提交
936705bdf4
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: E80B35A6F11C3656
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      gorge.js

+ 3
- 1
gorge.js 查看文件

@@ -94,7 +94,9 @@ function updateProductivity() {
}

function addResources(delta) {
resources.food += currentProductivity["food"] * delta / 1000;
for (const [resource, amount] of Object.entries(currentProductivity)) {
resources[resource] += amount * delta / 1000;
}
}

function displayResources() {


Loading…
取消
儲存