loadInventory

This commit is contained in:
milimoe 2025-04-09 01:10:25 +08:00
parent d322a97712
commit 2391d83aec
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E

View File

@ -1457,7 +1457,7 @@ namespace Milimoe.FunGame.Server.Controller
if (offer.Status == OfferState.Completed)
{
User offeree = Server.User;
User? offeror = SQLHelper.GetUserById(offer.Offeror);
User? offeror = SQLHelper.GetUserById(offer.Offeror, true);
if (offeror != null)
{
foreach (Guid itemGuid in offer.OffereeItems)