fix unbalanced parenthesis

这个提交包含在:
louis f 2019-01-19 16:47:00 -05:00
父节点 f3ddb3e58f
当前提交 fb9cab573e

查看文件

@ -921,15 +921,15 @@ class Player {
}
case "noise_disappearance01": //103500331
if(cur.Arg2) {
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000);
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000));
}
break;
case "noise_disappearance02": { //103500341
if(cur.Arg2) {
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000);
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000));
}
if(cur.Arg3) {
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000);
this.processTryRemoveChar(cur.Arg2, (Number(cur.Arg1) * 1000));
}
break;
}
@ -1533,4 +1533,4 @@ class Player {
}
});
}
}
}