Skip to content

Commit 8766a6e

Browse files
committed
a
1 parent f63957c commit 8766a6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/objects/Alphabet.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ class DynamicAlphabet extends Alphabet
388388
override public function update(elapsed:Float):Void
389389
{
390390
super.update(elapsed);
391-
this.text = doShuffle ? getRandomizedText() : originalText;
391+
if (doShuffle) this.text = getRandomizedText();
392392
}
393393

394394
private function getRandomizedText():String
@@ -477,7 +477,7 @@ class DynamicAlphabet extends Alphabet
477477
override public function update(elapsed:Float):Void
478478
{
479479
super.update(elapsed);
480-
this.text = doShuffle ? getRandomizedText() : originalText;
480+
if (doShuffle) this.text = getRandomizedText();
481481
if (dynamicRainbow)
482482
{
483483
letters.forEachT(letter -> {

source/states/FreeplayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ class FreeplayState extends MusicBeatState
712712
songText = new DynamicAlphabet(90, 320, songs[i].songName, true, true);
713713
}
714714
try {
715-
songText.doShuffle = AprilFools.allowAF ? FlxG.random.bool(10) : true;
715+
songText.doShuffle = AprilFools.allowAF ? FlxG.random.bool(10) : false;
716716
} catch (e:Dynamic) {
717717
trace("Error setting doShuffle: " + e);
718718
}

0 commit comments

Comments
 (0)