diff --git a/hmm.json b/hmm.json
index fd04b6b96..0a1c09327 100644
--- a/hmm.json
+++ b/hmm.json
@@ -30,7 +30,7 @@
       "name": "flxanimate",
       "type": "git",
       "dir": null,
-      "ref": "6bc8992",
+      "ref": "a8976ff",
       "url": "https://github.com/ninjamuffin99/flxanimate"
     },
     {
diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx
index aef346ec5..59e7292ff 100644
--- a/source/funkin/play/ResultState.hx
+++ b/source/funkin/play/ResultState.hx
@@ -232,21 +232,21 @@ class ResultState extends MusicBeatSubstate
         FlxTween.tween(highscoreNew, {y: highscoreNew.y + 10}, 0.8, {ease: FlxEase.quartOut});
       };
 
-      if (false)
+      switch (resultsVariation)
       {
-        boyfriend.animation.play('fall');
-        boyfriend.visible = true;
+        case NORMAL:
+          boyfriend.animation.play('fall');
+          boyfriend.visible = true;
 
-        new FlxTimer().start((1 / 24) * 22, _ -> {
-          // plays about 22 frames (at 24fps timing) after bf spawns in
-          gf.animation.play('clap', true);
-          gf.visible = true;
-        });
-      }
-      else
-      {
-        bfGfExcellent.visible = true;
-        bfGfExcellent.playAnimation("");
+          new FlxTimer().start((1 / 24) * 22, _ -> {
+            // plays about 22 frames (at 24fps timing) after bf spawns in
+            gf.animation.play('clap', true);
+            gf.visible = true;
+          });
+        case PERFECT:
+          bfGfExcellent.visible = true;
+          bfGfExcellent.playAnimation("");
+        default:
       }
     });