From 02632a623c4c063bf5253c28aed5394fce50c850 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Thu, 15 Jun 2023 03:48:52 -0400 Subject: [PATCH] Disable fakeout happening 100% of the time. --- source/funkin/play/GameOverSubstate.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/play/GameOverSubstate.hx b/source/funkin/play/GameOverSubstate.hx index 041831962..a2048149f 100644 --- a/source/funkin/play/GameOverSubstate.hx +++ b/source/funkin/play/GameOverSubstate.hx @@ -130,7 +130,7 @@ class GameOverSubstate extends MusicBeatSubstate { hasStartedAnimation = true; - if (boyfriend.hasAnimation('fakeoutDeath') && (FlxG.random.bool((1 / 4000) * 100) || true)) + if (boyfriend.hasAnimation('fakeoutDeath') && FlxG.random.bool((1 / 4096) * 100)) { boyfriend.playAnimation('fakeoutDeath', true, true); }