muffin v6.15

This commit is contained in:
alydev 2025-10-09 08:41:52 +10:00
parent cb878047bb
commit 29d735e936
16 changed files with 116 additions and 110 deletions

View file

@ -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);