forked from liza/Questionable
Add /qst start/stop
This commit is contained in:
parent
af37252629
commit
557a5c44bb
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user