| 赞 | 0 |
| VIP | 0 |
| 好人卡 | 1 |
| 积分 | 2 |
| 经验 | 11370 |
| 最后登录 | 2020-8-11 |
| 在线时间 | 85 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 165
- 在线时间
- 85 小时
- 注册时间
- 2016-4-26
- 帖子
- 15
|
您可以尝试把Game_Battler.prototype.refresh由:- Game_Battler.prototype.refresh = function() {
- Game_BattlerBase.prototype.refresh.call(this);
- if (this.hp === 0) {
- this.addState(this.deathStateId());
- } else {
- this.removeState(this.deathStateId());
- }
- };
复制代码 改为:- Game_Battler.prototype.refresh = function() {
- Game_BattlerBase.prototype.refresh.call(this);
- if (this.hp === 0 && this.mp === 0 && this.tp === 0) {
- this.addState(this.deathStateId());
- } else {
- this.removeState(this.deathStateId());
- }
- };
复制代码 |
|