From 54e14a5e99ed05e7f503a46c0b2a3d6fb83f17c3 Mon Sep 17 00:00:00 2001 From: SuperMonster003 Date: Thu, 25 Jul 2019 13:34:40 +0800 Subject: [PATCH] Clean some developing test codes --- Ant_Forest_Launcher.js | 2 -- README.md | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Ant_Forest_Launcher.js b/Ant_Forest_Launcher.js index 0a8a8e2..5565f42 100644 --- a/Ant_Forest_Launcher.js +++ b/Ant_Forest_Launcher.js @@ -294,7 +294,6 @@ function prologue() { } if (!this[name]) this[name] = 1; else this[name] += 1; - console.warn(name + " +1: " + this[name]); }; }, get decrease() { @@ -302,7 +301,6 @@ function prologue() { this[name] = this[name] || 0; if (this[name] > 1) this[name] -= 1; else this[name] = 0; - console.warn(name + " -1: " + this[name]); }; }, }; diff --git a/README.md b/README.md index 731837d..e982795 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ ### 版本历史 ****** # v1.8.1 +###### 2019/07/25 * `修复` 意外保险机制开关与上级开关的关联失效问题 * `修复` 意外保险机制内存数据关联异常及任务冗余问题 * `修复` 排行榜好友访问计数器传入参数无效的问题