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

@ -137,30 +137,26 @@ internal sealed class ShopController : IDisposable, IShopWindow
public unsafe void TriggerPurchase(AtkUnitBase* addonShop, int buyNow)
{
//IL_0016: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: 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)
AtkValue* values = stackalloc AtkValue[4]
{
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = 0
},
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = _shop.ItemForSale.Position
},
new AtkValue
{
Type = (AtkValueType)3,
Type = AtkValueType.Int,
Int = buyNow
},
new AtkValue
{
Type = (AtkValueType)0,
Type = AtkValueType.Undefined,
Int = 0
}
};