diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/Mail.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/Mail.cpp b/src/game/Mail.cpp index 64403a3b488..667b5ef19ec 100644 --- a/src/game/Mail.cpp +++ b/src/game/Mail.cpp @@ -751,7 +751,10 @@ void WorldSession::HandleQueryNextMailTime(WorldPacket & /*recv_data*/ )              if (now < m->deliver_time)                  continue; -            data << uint64(m->sender);                     // sender guid +            if (m->messageType) +                data << uint64(m->sender); // player guid +            else +                data << uint32(m->sender); // creature entry              switch(m->messageType)              {  | 
