We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f63957c commit fa88bdaCopy full SHA for fa88bda
source/objects/Alphabet.hx
@@ -388,7 +388,8 @@ class DynamicAlphabet extends Alphabet
388
override public function update(elapsed:Float):Void
389
{
390
super.update(elapsed);
391
- this.text = doShuffle ? getRandomizedText() : originalText;
+ if (doShuffle)
392
+ this.text = getRandomizedText();
393
}
394
395
private function getRandomizedText():String
0 commit comments