Show
Ignore:
Timestamp:
11/19/08 13:48:57 (17 years ago)
Author:
yumileroy
Message:

[svn] *** Source: MaNGOS ***
* Fixed english spelling in src/game/WorldSocket.h/cpp. Author: Derex
* [240_world.sql] Create new command .senditems and remove from moderator level command .sendmail possibility send items. Author: Vladimir
* Added new command: .sendmoney player "subject" "message" money - Sends a mail with money to a player. Author: fredi
* Correctly apply taken damage debufs/bonuses in cases non-physical melee damage. Author: Frankir
* Fix a crash in add friend/ignore callback. (check if player still logged in). Author: Hunuza
* Better args checking in .sendmoney command. Author: Vladimir

Original author: visagalis
Date: 2008-11-14 17:50:48-06:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/MiscHandler.cpp

    r230 r232  
    500500 
    501501    WorldSession * session = sWorld.FindSession(accountId); 
    502     if(!session) 
     502    if(!session || !session->GetPlayer()) 
    503503        return; 
    504504 
     
    583583 
    584584    WorldSession * session = sWorld.FindSession(accountId); 
    585     if(!session) 
     585    if(!session || !session->GetPlayer()) 
    586586        return; 
    587587