From e16fe464e73157466cfcf404d5e7294d49a8fccd Mon Sep 17 00:00:00 2001 From: CrazyRedMachine Date: Wed, 26 Jul 2023 23:15:25 +0200 Subject: [PATCH] fix button 9 long notes being deleted (thanks Milo) --- pms2bemani/pms2bemani/bmx2bmson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pms2bemani/pms2bemani/bmx2bmson.py b/pms2bemani/pms2bemani/bmx2bmson.py index b37dac9..16d4f3f 100644 --- a/pms2bemani/pms2bemani/bmx2bmson.py +++ b/pms2bemani/pms2bemani/bmx2bmson.py @@ -231,7 +231,7 @@ class bms2bmson: "mc" : 0 }) break - if (ch > 50 and ch < 70): + if (ch > 50 and ch <= 70): pln = i while pln + 1 < len(self.NotePre): pln = pln + 1