From c86c9db8d09edfc13b5ee9c4d57ed6798de35683 Mon Sep 17 00:00:00 2001 From: KadeDev Date: Sat, 20 Mar 2021 11:13:25 -0700 Subject: [PATCH] version stuff --- source/MainMenuState.hx | 2 +- source/PlayState.hx | 4 ++-- version.downloadMe | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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