version stuff

This commit is contained in:
KadeDev
2021-03-20 11:13:25 -07:00
parent 1d917ed634
commit c86c9db8d0
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ class MainMenuState extends MusicBeatState
var newGaming2:FlxText; var newGaming2:FlxText;
var newInput:Bool = true; 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"; public static var gameVer:String = "0.2.7.1";
var magenta:FlxSprite; var magenta:FlxSprite;

View File

@ -2401,10 +2401,10 @@ class PlayState extends MusicBeatState
// ANTI MASH CODE FOR THE BOYS // ANTI MASH CODE FOR THE BOYS
if (mashing <= getKeyPresses(note) && mashViolations < 2) if (mashing <= getKeyPresses(note) + 1 && mashViolations < 2)
{ {
mashViolations++; mashViolations++;
goodNoteHit(note, (mashing <= getKeyPresses(note))); goodNoteHit(note, (mashing <= getKeyPresses(note) + 1));
} }
else else
{ {

View File

@ -1 +1 @@
1.2 1.2.1