muffin v6.15
This commit is contained in:
parent
84717c5024
commit
521c02e8b8
15 changed files with 71 additions and 65 deletions
|
@ -169,7 +169,7 @@ internal sealed class DebugOverlay : Window
|
|||
text.AppendLiteral("/");
|
||||
text.AppendFormatted(item3.GameObjectId, "X");
|
||||
text.AppendLiteral(", ");
|
||||
text.AppendFormatted(item3.DataId);
|
||||
text.AppendFormatted(item3.BaseId);
|
||||
text.AppendLiteral(", ");
|
||||
text.AppendFormatted(item);
|
||||
text.AppendLiteral(" - ");
|
||||
|
|
|
@ -82,10 +82,10 @@ internal sealed class QuestSelectionWindow : LWindow
|
|||
{
|
||||
if (gameObject != null)
|
||||
{
|
||||
uint dataId = gameObject.DataId;
|
||||
uint baseId = gameObject.BaseId;
|
||||
string value = gameObject.Name.ToString();
|
||||
base.WindowName = $"Quests starting with {value} [{dataId}]{"###QuestionableQuestSelection"}";
|
||||
_quests = _questData.GetAllByIssuerDataId(dataId);
|
||||
base.WindowName = $"Quests starting with {value} [{baseId}]{"###QuestionableQuestSelection"}";
|
||||
_quests = _questData.GetAllByIssuerDataId(baseId);
|
||||
if (_gameGui.TryGetAddonByName<AddonSelectIconString>("SelectIconString", out var addonPtr))
|
||||
{
|
||||
List<string?> answers = InteractionUiController.GetChoices(addonPtr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue