[U] Update documentation

pull/9/head
Azalea 2024-02-07 05:42:40 -05:00
parent 5f1ca64d65
commit 7d0f70f1c0
3 changed files with 4 additions and 1 deletions

View File

@ -12,3 +12,5 @@ TicketUnlock=true
SkipWarningScreen=true
# Single player: Show 1P only, at the center of the screen
SinglePlayer=true
# !!EXPERIMENTAL!! Skip from the card-scanning screen directly to music selection screen
SkipToMusicSelection=false

View File

@ -12,6 +12,7 @@ This mod is heavily WIP. More details will be added as the development progresse
* Remove the starting logo and warning cutscene
* Single Player (1P) mode
* Skip from card scanning directly to music selection (experimental)
**Bug Fixes**

View File

@ -18,7 +18,7 @@ namespace AquaMai.UX
public static bool OnUpdate(InformationProcess __instance, ProcessDataContainer ___container)
{
GameManager.SetMaxTrack();
___container.processManager.AddProcess(new MusicSelectProcess(___container), 50);
___container.processManager.AddProcess(new MusicSelectProcess(___container));
___container.processManager.ReleaseProcess(__instance);
return false;
}