From a2957f53b09027d00a4d513fb8ff8ec4e6fd79d0 Mon Sep 17 00:00:00 2001 From: Inifield Date: Sat, 30 Sep 2017 13:06:38 +0200 Subject: [PATCH] Fix mail system not sending all items --- src/game/Entities/Player/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Entities/Player/Player.cpp b/src/game/Entities/Player/Player.cpp index c442a82ac..da82a0c6e 100644 --- a/src/game/Entities/Player/Player.cpp +++ b/src/game/Entities/Player/Player.cpp @@ -18836,7 +18836,7 @@ void Player::_LoadMailAsynch(PreparedQueryResult result) m->state = MAIL_STATE_UNCHANGED; } - if (m && has_items && fields[12].GetUInt32() /*itemEntry*/) + if (m && fields[20].GetBool() /*has_items*/ && fields[12].GetUInt32() /*itemEntry*/) { uint32 itemGuid = fields[11].GetUInt32(); uint32 itemTemplate = fields[12].GetUInt32();