mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 10:05:41 -05:00
Disable fakeout happening 100% of the time.
This commit is contained in:
parent
374f03dae3
commit
02632a623c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue