소스 검색

All resource types are incremented now, not just food

tags/v0.0.1
Fen Dweller 7 년 전
부모
커밋
936705bdf4
No known key found for this signature in database GPG 키 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() {


불러오는 중...
취소
저장