Browse Source

Fix timed powerups not being applied

tags/v0.0.6
Fen Dweller 5 years ago
parent
commit
d814db8195
No known key found for this signature in database GPG Key ID: E80B35A6F11C3656
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      gorge.js

+ 1
- 1
gorge.js View File

@@ -235,7 +235,7 @@ function updateProductivity() {
Object.assign(currentProductivity, calculateProductivity()); Object.assign(currentProductivity, calculateProductivity());


Object.entries(activePowerups).forEach(([key, entry]) => { Object.entries(activePowerups).forEach(([key, entry]) => {
if (entry.time > 0) {
if (entry.life > 0) {
const powerup = entry.powerup; const powerup = entry.powerup;


const state = { const state = {


Loading…
Cancel
Save