muffin v7.5.1

This commit is contained in:
alydev 2026-05-01 08:59:48 +10:00
parent a6481e7b9a
commit 965a736f84
59 changed files with 4112 additions and 5059 deletions

View file

@ -186,8 +186,6 @@ internal sealed class InteractionUiController : IDisposable
private unsafe void SelectStringPostSetup(AddonSelectString* addonSelectString, bool checkAllSteps)
{
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0052: Invalid comparison between Unknown and I4
if (!ShouldHandleUiInteractions)
{
return;
@ -200,7 +198,7 @@ internal sealed class InteractionUiController : IDisposable
List<string> list = new List<string>();
for (ushort num = 7; num < addonSelectString->AtkUnitBase.AtkValuesCount; num++)
{
if ((int)addonSelectString->AtkUnitBase.AtkValues[(int)num].Type == 8)
if (addonSelectString->AtkUnitBase.AtkValues[(int)num].Type == AtkValueType.String)
{
list.Add(addonSelectString->AtkUnitBase.AtkValues[(int)num].ReadAtkString());
}
@ -874,8 +872,6 @@ internal sealed class InteractionUiController : IDisposable
private unsafe void DifficultySelectYesNoPostSetup(AtkUnitBase* addonDifficultySelectYesNo, bool checkAllSteps)
{
//IL_00f6: Unknown result type (might be due to invalid IL or missing references)
//IL_011c: Unknown result type (might be due to invalid IL or missing references)
if (!_questController.IsRunning)
{
return;
@ -903,12 +899,12 @@ internal sealed class InteractionUiController : IDisposable
{
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = 0
},
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = _configuration.SinglePlayerDuties.RetryDifficulty
}
};
@ -996,8 +992,6 @@ internal sealed class InteractionUiController : IDisposable
private unsafe void PointMenuPostSetup(AtkUnitBase* addonPointMenu)
{
//IL_00f5: Unknown result type (might be due to invalid IL or missing references)
//IL_011c: Unknown result type (might be due to invalid IL or missing references)
if (!ShouldHandleUiInteractions)
{
return;
@ -1035,12 +1029,12 @@ internal sealed class InteractionUiController : IDisposable
{
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = 13
},
new AtkValue
{
Type = (AtkValueType)5,
Type = AtkValueType.UInt,
UInt = num
}
};
@ -1060,9 +1054,6 @@ internal sealed class InteractionUiController : IDisposable
private unsafe void EasterMowingResultPostSetup(AddonEvent type, AddonArgs args)
{
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_009a: Unknown result type (might be due to invalid IL or missing references)
if (_seasonalDutyController.IsRunning || ShouldHandleUiInteractions)
{
_logger.LogInformation("Dismissing EasterMowingResult");
@ -1071,17 +1062,17 @@ internal sealed class InteractionUiController : IDisposable
{
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = -1
},
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = 1
},
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = 1
}
};