diff --git a/SVSim.EmulatedEntrypoint/Controllers/GiftController.cs b/SVSim.EmulatedEntrypoint/Controllers/GiftController.cs index 449add5..fe89173 100644 --- a/SVSim.EmulatedEntrypoint/Controllers/GiftController.cs +++ b/SVSim.EmulatedEntrypoint/Controllers/GiftController.cs @@ -74,8 +74,11 @@ public class GiftController : SVSimController && requested.Contains(p.PresentId)) .ToListAsync(); - await using var tx = await _inv.BeginAsync(viewerId, configure: - cfg => cfg.WithInclude(v => v.MissionData)); + await using var tx = await _inv.BeginAsync(viewerId, configure: cfg => + { + cfg.Source = GrantSource.AdminGrant; + cfg.WithInclude(v => v.MissionData); + }); var rewardListEntries = new List(); var now = DateTime.UtcNow;