bugfix
This commit is contained in:
parent
89186ff31b
commit
ab87506a79
|
@ -22637,7 +22637,7 @@
|
|||
player.hujia=hujia;
|
||||
player.$update();
|
||||
},this,this.hp,this.maxHp,this.hujia);
|
||||
this.$update();
|
||||
this.$update(...arguments);
|
||||
}
|
||||
$update(){
|
||||
if(this.hp>=this.maxHp) this.hp=this.maxHp;
|
||||
|
@ -36076,8 +36076,12 @@
|
|||
}
|
||||
},
|
||||
playAudio:function(){
|
||||
if(_status.video&&arguments[1]!='video') return;
|
||||
let path='',emptyPath=true,notCheckDBPath=true,onError=null;
|
||||
if(_status.video){
|
||||
if(arguments[1]!='video') return;
|
||||
path=arguments[0];
|
||||
}
|
||||
else{
|
||||
for(const argument of arguments){
|
||||
if(typeof argument==='string'||typeof argument=='number'){
|
||||
if(emptyPath) emptyPath=false;
|
||||
|
@ -36095,6 +36099,7 @@
|
|||
if(path.startsWith('ext:')) path=path.replace(/^ext:/,'extension/');
|
||||
else if(!path.startsWith('db:')) path=`audio/${path}`;
|
||||
if(!lib.config.repeat_audio&&_status.skillaudio.contains(path)) return;
|
||||
}
|
||||
_status.skillaudio.add(path);
|
||||
game.addVideo('playAudio',null,path);
|
||||
setTimeout(()=>_status.skillaudio.remove(path),1000);
|
||||
|
|
Loading…
Reference in New Issue