Skip to content

Commit

Permalink
Quick Patch
Browse files Browse the repository at this point in the history
Day 1 patches and updates
  • Loading branch information
Sonamaker1 committed Apr 19, 2022
1 parent b14611a commit 9244f09
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/preload/scripts/onEnd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function endTime()
startDialogue('stages/cutsceneTeamwork', 'Teamwork-noLoop','ebbfeb');
return Function_Stop;
elseif teamworkCheck == '' then
local tempBool = fullCheckUnlocked('Lackluster-Check','Teamwork|Lackluster|Missing');
local tempBool = fullCheckUnlocked('Lackluster-Check','Missing|Lackluster|Teamwork'); -- gotta flip it and reverse it apparently
if tempBool == songName then
if songName =='Teamwork' then
makeHideScr()
Expand Down
Binary file modified assets/songs/abstract-obstruction/Voices.ogg
Binary file not shown.
Binary file modified assets/songs/bipolarity/Voices.ogg
Binary file not shown.
Binary file modified assets/songs/salutations/Voices.ogg
Binary file not shown.
6 changes: 4 additions & 2 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2168,8 +2168,10 @@ class PlayState extends MusicBeatState

FlxG.sound.music.play();
Conductor.songPosition = FlxG.sound.music.time;
vocals.time = Conductor.songPosition;
vocals.play();
if(Conductor.songPosition < vocals.length){
vocals.time = Conductor.songPosition;
vocals.play();
}
}

public var paused:Bool = false;
Expand Down

0 comments on commit 9244f09

Please sign in to comment.