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

@ -37,10 +37,10 @@ internal sealed class AetheryteFunctions
public unsafe bool IsAetheryteUnlocked(uint aetheryteId, out byte subIndex)
{
subIndex = 0;
UIState* ptr = UIState.Instance();
if (ptr != null)
UIState* cfcData = UIState.Instance();
if (cfcData != null)
{
return ptr->IsAetheryteUnlocked(aetheryteId);
return cfcData->IsAetheryteUnlocked(aetheryteId);
}
return false;
}
@ -51,8 +51,8 @@ internal sealed class AetheryteFunctions
{
return _serviceProvider.GetRequiredService<QuestFunctions>().IsQuestComplete(new QuestId(3672));
}
byte subIndex;
return IsAetheryteUnlocked((uint)aetheryteLocation, out subIndex);
byte cfcData;
return IsAetheryteUnlocked((uint)aetheryteLocation, out cfcData);
}
public unsafe bool CanTeleport(EAetheryteLocation aetheryteLocation)
@ -66,8 +66,8 @@ internal sealed class AetheryteFunctions
public unsafe bool IsTeleportUnlocked()
{
uint rowId = _dataManager.GetExcelSheet<Lumina.Excel.Sheets.Action>().GetRow(5u).UnlockLink.RowId;
return UIState.Instance()->IsUnlockLinkUnlocked(rowId);
uint e = _dataManager.GetExcelSheet<Lumina.Excel.Sheets.Action>().GetRow(5u).UnlockLink.RowId;
return UIState.Instance()->IsUnlockLinkUnlocked(e);
}
public unsafe bool TeleportAetheryte(uint aetheryteId)