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

[svn] * Prevent crash at access to deleted social data for player. Remove social data at logout instead - source mangos
* Fixed subcommands list output at console. - source mangos
* Rename scripts update.

Original author: KingPin?
Date: 2008-10-28 08:10:44-05:00

Files:
1 modified

Legend:

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

    r126 r128  
    48994899 
    49004900    // caster or target already have requested duel 
    4901     if( caster->duel || target->duel || target->GetSocial()->HasIgnore(caster->GetGUIDLow()) ) 
     4901    if( caster->duel || target->duel || !target->GetSocial() || target->GetSocial()->HasIgnore(caster->GetGUIDLow()) ) 
    49024902        return; 
    49034903