Add /qst start/stop

pull/5/head
Liza 2024-06-19 16:50:02 +02:00
parent af37252629
commit 557a5c44bb
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 8 additions and 1 deletions

View File

@ -70,7 +70,14 @@ internal sealed class DalamudInitializer : IDisposable
{ {
if (arguments is "c" or "config") if (arguments is "c" or "config")
_configWindow.Toggle(); _configWindow.Toggle();
else if (arguments is "start")
_questController.ExecuteNextStep(true);
else if (arguments is "stop")
{
_movementController.Stop();
_questController.Stop("Stop command");
}
else if (string.IsNullOrEmpty(arguments))
_questWindow.Toggle(); _questWindow.Toggle();
} }