diff --git a/source/MainMenuState.hx b/source/MainMenuState.hx index a90db07..3ba405c 100644 --- a/source/MainMenuState.hx +++ b/source/MainMenuState.hx @@ -32,7 +32,7 @@ class MainMenuState extends MusicBeatState var newGaming2:FlxText; var newInput:Bool = true; - public static var kadeEngineVer:String = "1.2.1-BETA"; + public static var kadeEngineVer:String = "1.2.1"; public static var gameVer:String = "0.2.7.1"; var magenta:FlxSprite; diff --git a/source/PlayState.hx b/source/PlayState.hx index a3a86f6..b88cf80 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -2401,10 +2401,10 @@ class PlayState extends MusicBeatState // ANTI MASH CODE FOR THE BOYS - if (mashing <= getKeyPresses(note) && mashViolations < 2) + if (mashing <= getKeyPresses(note) + 1 && mashViolations < 2) { mashViolations++; - goodNoteHit(note, (mashing <= getKeyPresses(note))); + goodNoteHit(note, (mashing <= getKeyPresses(note) + 1)); } else { diff --git a/version.downloadMe b/version.downloadMe index ea710ab..cb174d5 100644 --- a/version.downloadMe +++ b/version.downloadMe @@ -1 +1 @@ -1.2 \ No newline at end of file +1.2.1 \ No newline at end of file