From 2fc3080c34a70f592dcac38f29300327b21b4714 Mon Sep 17 00:00:00 2001 From: yuukiwww <0xv75b42326631e@au.com> Date: Sun, 10 Nov 2024 10:39:06 +0000 Subject: [PATCH] =?UTF-8?q?=E5=86=8D=E3=83=97=E3=83=AC=E3=82=A4=E3=81=A7?= =?UTF-8?q?=E3=82=82=E5=80=8D=E9=80=9F=E7=8A=B6=E6=85=8B=E3=82=92=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/src/js/controller.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/src/js/controller.js b/public/src/js/controller.js index bebb6f5..b2978ac 100644 --- a/public/src/js/controller.js +++ b/public/src/js/controller.js @@ -9,6 +9,7 @@ class Controller{ this.saveScore = !autoPlayEnabled this.multiplayer = multiplayer this.touchEnabled = touchEnabled + this.baisoku = baisoku if(multiplayer === 2){ this.snd = p2.player === 2 ? "_p1" : "_p2" this.don = p2.don || defaultDon @@ -279,7 +280,7 @@ class Controller{ Promise.all(promises).then(resolve) } }).then(() => { - var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled, false, this.touchEnabled) + var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled, false, this.touchEnabled, this.baisoku) taikoGame.run() }) }