forked from aly/qstbak
muffin v7.4.10
This commit is contained in:
parent
2df81c5d15
commit
b8dd142c23
47 changed files with 3604 additions and 1058 deletions
|
|
@ -1,3 +1,4 @@
|
|||
using Questionable.Model.Questing;
|
||||
using Questionable.Windows;
|
||||
|
||||
namespace Questionable.Controller.DebugCommands;
|
||||
|
|
@ -15,6 +16,13 @@ internal sealed class SequencesCommandHandler : IDebugCommandHandler
|
|||
|
||||
public void Execute(string[] arguments)
|
||||
{
|
||||
_questSequenceWindow.ToggleOrUncollapse();
|
||||
if (arguments.Length >= 1 && ElementId.TryFromString(arguments[0], out ElementId elementId) && elementId != null)
|
||||
{
|
||||
_questSequenceWindow.OpenForQuest(elementId);
|
||||
}
|
||||
else
|
||||
{
|
||||
_questSequenceWindow.ToggleOrUncollapse();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue