Skip to content

Commit

Permalink
Clean some developing test codes
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMonster003 committed Jul 25, 2019
1 parent 144379b commit 54e14a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions Ant_Forest_Launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,15 +294,13 @@ function prologue() {
}
if (!this[name]) this[name] = 1;
else this[name] += 1;
console.warn(name + " +1: " + this[name]);
};
},
get decrease() {
return (name) => {
this[name] = this[name] || 0;
if (this[name] > 1) this[name] -= 1;
else this[name] = 0;
console.warn(name + " -1: " + this[name]);
};
},
};
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
### 版本历史
******
# v1.8.1
###### 2019/07/25
* `修复` 意外保险机制开关与上级开关的关联失效问题
* `修复` 意外保险机制内存数据关联异常及任务冗余问题
* `修复` 排行榜好友访问计数器传入参数无效的问题
Expand Down

0 comments on commit 54e14a5

Please sign in to comment.