File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -527,6 +527,12 @@ class APGameState
527527 var info = info ();
528528 var locations = locationData (songName , modName ).concat (noteData (songName , modName ));
529529
530+ if (info .missingLocations .length == 0 && info .checkedLocations .length == 0 )
531+ {
532+ trace (" AP is not ready yet - no locations checked or missing." );
533+
534+ }
535+
530536 if (locations == null || locations .length == 0 )
531537 {
532538 trace (" No locations found for song: " + songName + " with mod: " + modName );
@@ -2674,6 +2680,10 @@ class APGameState
26742680 // Validate that the death link state was restored correctly
26752681 gameStateInstance .validateDeathLinkState ();
26762682
2683+ APEntryState .gonnaRunSync = true ; // Force sync on next update
2684+ client. Sync ();
2685+
2686+
26772687 // Inject offline queue into new client if available
26782688 if (_tempOfflineQueue != null && _tempOfflineQueue .length > 0 ) {
26792689 trace (' Injecting ${_tempOfflineQueue .length } items from offline queue into new client' );
Original file line number Diff line number Diff line change @@ -2020,7 +2020,7 @@ class APPlayState extends PlayState {
20202020 var playerGame = apClient .get_player_game (playerID );
20212021
20222022 switch (playerGame .toLowerCase ()) {
2023- case " friday night funkin' " , " fnf " :
2023+ case " friday night funkin" :
20242024 extraMessages = extraMessages .concat ([
20252025 " Skill issue detected..." ,
20262026 " They couldn't hit the notes..." ,
@@ -2060,6 +2060,12 @@ class APPlayState extends PlayState {
20602060 " Should have grabbed that mushroom..." ,
20612061 " Mamma mia! That's-a gonna hurt!"
20622062 ]);
2063+ case " flipwitch forbidden sex hex" :
2064+ extraMessages = extraMessages .concat ([
2065+ " Sounds like they had fun..." ,
2066+ " Wow, they get more game than you!" ,
2067+ " Stop getting fucked, maybe you'll win next time..."
2068+ ]);
20632069 default :
20642070 extraMessages = extraMessages .concat ([
20652071 " They failed at " + playerGame + " ..." ,
You can’t perform that action at this time.
0 commit comments