浏览代码

Fix timed powerups not being applied

tags/v0.0.6
Fen Dweller 6 年前
父节点
当前提交
d814db8195
找不到此签名对应的密钥 GPG 密钥 ID: E80B35A6F11C3656
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      gorge.js

+ 1
- 1
gorge.js 查看文件

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

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

const state = {


正在加载...
取消
保存