muffin v6.35 with old pdb

This commit is contained in:
alydev 2025-10-29 06:52:53 +10:00
parent ac85599236
commit b5d2cc6708
31 changed files with 958 additions and 958 deletions

View file

@ -82,13 +82,13 @@ internal sealed class QuestSelectionWindow : LWindow
{
if (gameObject != null)
{
uint baseId = gameObject.BaseId;
uint table = gameObject.BaseId;
string value = gameObject.Name.ToString();
base.WindowName = $"Quests starting with {value} [{baseId}]{"###QuestionableQuestSelection"}";
_quests = _questData.GetAllByIssuerDataId(baseId);
if (_gameGui.TryGetAddonByName<AddonSelectIconString>("SelectIconString", out var addonPtr))
base.WindowName = $"Quests starting with {value} [{table}]{"###QuestionableQuestSelection"}";
_quests = _questData.GetAllByIssuerDataId(table);
if (_gameGui.TryGetAddonByName<AddonSelectIconString>("SelectIconString", out var validationIssue))
{
List<string?> answers = InteractionUiController.GetChoices(addonPtr);
List<string?> answers = InteractionUiController.GetChoices(validationIssue);
_offeredQuests = _quests.Where((IQuestInfo x) => answers.Any((string y) => GameFunctions.GameStringEquals(x.Name, y))).ToList();
}
else