1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00

Disable fakeout happening 100% of the time.

This commit is contained in:
EliteMasterEric 2023-06-15 03:48:52 -04:00
parent 374f03dae3
commit 02632a623c

View file

@ -130,7 +130,7 @@ class GameOverSubstate extends MusicBeatSubstate
{ {
hasStartedAnimation = true; 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); boyfriend.playAnimation('fakeoutDeath', true, true);
} }