From fb9cab573e73ebb20008ce365d3106f209cad3dc Mon Sep 17 00:00:00 2001 From: louis Date: Sat, 19 Jan 2019 16:47:00 -0500 Subject: [PATCH] fix unbalanced parenthesis --- Js/Player.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Js/Player.js b/Js/Player.js index 6c78744..50e98f5 100644 --- a/Js/Player.js +++ b/Js/Player.js @@ -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 { } }); } -} \ No newline at end of file +}