This commit is contained in:
libccy 2017-02-24 16:57:05 +08:00
parent f019c54511
commit 40ed567a9d
1 changed files with 5 additions and 8 deletions

View File

@ -9591,9 +9591,11 @@
if(num>player.maxHp-player.hp) num=player.maxHp-player.hp; if(num>player.maxHp-player.hp) num=player.maxHp-player.hp;
if(num>0){ if(num>0){
player.changeHp(num,false); player.changeHp(num,false);
if(lib.config.animation&&!lib.config.low_performance){ game.broadcastAll(function(player){
player.$recover(); if(lib.config.animation&&!lib.config.low_performance){
} player.$recover();
}
},player);
player.$damagepop(num,'wood'); player.$damagepop(num,'wood');
game.log(player,'回复了'+get.cnNumber(num)+'点体力') game.log(player,'回复了'+get.cnNumber(num)+'点体力')
} }
@ -14785,11 +14787,6 @@
top+this.offsetHeight-30,700,'dust'); top+this.offsetHeight-30,700,'dust');
}, },
$recover:function(){ $recover:function(){
game.broadcast(function(player){
if(!lib.config.low_performance){
player.$recover();
}
},this);
game.addVideo('flame',this,'recover'); game.addVideo('flame',this,'recover');
var left,top; var left,top;
if(game.chess){ if(game.chess){