Skip to content

Commit

Permalink
FIXXXXXX
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLikesKirby committed May 22, 2024
1 parent 554a62e commit c3c00be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2725,7 +2725,8 @@ class PlayState extends MusicBeatState
{
var arrowType:Int = note_order[i];
var strumType:String = '';
if ((funnyFloatyBoys.contains(dad.curCharacter) || threedBoysMod.contains(dad.curCharacter)) && player == 0 || funnyFloatyBoys.contains(boyfriend.curCharacter) || threedBoysMod.contains(boyfriend.curCharacter) && player == 1)
if (((funnyFloatyBoys.contains(dad.curCharacter) || threedBoysMod.contains(dad.curCharacter)) && player == 0) ||
((funnyFloatyBoys.contains(boyfriend.curCharacter) || threedBoysMod.contains(boyfriend.curCharacter)) && player == 1))
{
strumType = '3D';
}
Expand Down

0 comments on commit c3c00be

Please sign in to comment.