Skip to content

Commit

Permalink
disable post cutscenes for 2hot and blazin
Browse files Browse the repository at this point in the history
it may suck but this is to prevent the crash that happens upon completing 2hot/blazin in story mode. this will be the case until i find a way to fix that
  • Loading branch information
JordanSantiagoYT committed Nov 15, 2024
1 parent 40372b2 commit de66c0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/MainMenuState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ using StringTools;

class MainMenuState extends MusicBeatState
{
public static var psychEngineJSVersion:String = '1.37.1'; //This is also used for Discord RPC
public static var psychEngineJSVersion:String = '1.38.0'; //This is also used for Discord RPC
public static var psychEngineVersion:String = '0.6.3'; //This is also used for Discord RPC
public static var curSelected:Int = 0;

Expand Down
4 changes: 2 additions & 2 deletions source/stages/PhillyBlazin.hx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class PhillyBlazin extends BaseStage
switch (songName)
{
case 'blazin':
setEndCallback(function()
/*setEndCallback(function()
{
game.endingSong = true;
game.inCutscene = true;
Expand All @@ -107,7 +107,7 @@ class PhillyBlazin extends BaseStage
FlxG.camera.visible = false;
game.camHUD.visible = false;
game.startVideo('blazinCutscene');
});
});*/
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/stages/PhillyStreets.hx
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@ class PhillyStreets extends BaseStage
case 'darnell':
if(!seenCutscene) setStartCallback(videoCutscene.bind('darnellCutscene'));
case '2hot':
setEndCallback(function()
/*setEndCallback(function()
{
game.endingSong = true;
game.inCutscene = true;
FlxTransitionableState.skipNextTransIn = true;
FlxG.camera.visible = false;
game.camHUD.visible = false;
game.startVideo('2hotCutscene');
});
});*/
}
}
}
Expand Down

0 comments on commit de66c0f

Please sign in to comment.