[PATCH] Add Easier Big Notes setting

This commit is contained in:
LoveEevee
2020-02-29 18:56:59 +03:00
committed by purerosefallen
parent 2ab0de9644
commit 3097dd3736
5 changed files with 38 additions and 9 deletions

View File

@@ -60,7 +60,11 @@ class Controller{
this.view = new View(this)
this.mekadon = new Mekadon(this, this.game)
this.keyboard = new GameInput(this)
this.TaikoForceLv5 = this.keyboard.keyboard.TaikoForceLv5 && !autoPlayEnabled && (this.multiplayer !== 2);
if(!autoPlayEnabled && this.multiplayer !== 2){
this.easierBigNotes = settings.getItem("easierBigNotes") || this.keyboard.keyboard.TaikoForceLv5
}else{
this.easierBigNotes = false
}
this.drumSounds = settings.getItem("latency").drumSounds
this.playedSounds = {}