Skip to content

Commit

Permalink
Funny change bf
Browse files Browse the repository at this point in the history
  • Loading branch information
superpowers04 committed May 19, 2024
1 parent 3408c14 commit 7f95f33
Show file tree
Hide file tree
Showing 8 changed files with 217 additions and 210 deletions.
2 changes: 2 additions & 0 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@
<haxelib name="flxanimate" /> <!-- Texture atlas rendering -->
<haxelib name="hxCodec" if="desktop" unless="hl" /> <!-- Video playback -->
<haxelib name="funkin.vis"/>

<define name='message.no-color'/>


<haxelib name="json2object" /> <!-- JSON parsing -->
Expand Down
3 changes: 2 additions & 1 deletion source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ import funkin.ui.debug.stage.StageOffsetSubState;
import funkin.ui.mainmenu.MainMenuState;
import funkin.ui.MusicBeatSubState;
import funkin.ui.options.PreferencesMenu;
import funkin.ui.options.CharacterSelect;
import funkin.ui.story.StoryMenuState;
import funkin.ui.transition.LoadingState;
import funkin.util.SerializerUtil;
Expand Down Expand Up @@ -1667,7 +1668,7 @@ class PlayState extends MusicBeatSubState
//
// BOYFRIEND
//
var boyfriend:BaseCharacter = CharacterDataParser.fetchCharacter(currentCharacterData.player);
var boyfriend:BaseCharacter = CharacterDataParser.fetchCharacter(CharacterSelect.BF == "" ? currentCharacterData.player : CharacterSelect.BF);

if (boyfriend != null)
{
Expand Down
Loading

0 comments on commit 7f95f33

Please sign in to comment.