Added guid returns from SendMail

Previously only AC received guid returns from this PR.
This commit adds a return for all cores.
This commit is contained in:
55Honey
2021-03-15 12:15:38 +01:00
committed by GitHub
parent 620cb0ff15
commit 688857b0f2

View File

@@ -2156,7 +2156,9 @@ namespace LuaGlobalFunctions
item->SaveToDB();
#endif
draft.AddItem(item);
#if defined AZEROTHCORE
#if defined TRINITY
Eluna::Push(L, item->GetGUID().GetCounter());
#else
Eluna::Push(L, item->GetGUIDLow());
#endif
++addedItems;
@@ -2170,11 +2172,7 @@ namespace LuaGlobalFunctions
#else
draft.SendMailTo(MailReceiver(receiverPlayer, MAKE_NEW_GUID(receiverGUIDLow, 0, HIGHGUID_PLAYER)), sender);
#endif
#if defined AZEROTHCORE
return addedItems;
#else
return 0;
#endif
}
/**