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

[svn] * Fixed xp calculation for low level characters when grouped with a higher level player. Patch provided by Reiner030.
* Fixed positive spells being not resistable when cast on hostile units. Patch provided by QAston.
* Fixed compile warnings in gcc. Patch provided by WarHead?.

Original author: w12x
Date: 2008-10-26 11:50:07-05:00

Files:
1 modified

Legend:

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

    r102 r111  
    15281528    { 
    15291529        if(itr->second.done_world_state) 
    1530             plr->SendUpdateWorldState(itr->second.done_world_state, itr->second.done); 
     1530            plr->SendUpdateWorldState(itr->second.done_world_state, (uint32)(itr->second.done)); 
    15311531        if(itr->second.max_world_state) 
    1532             plr->SendUpdateWorldState(itr->second.max_world_state, itr->second.reqNum); 
    1533     } 
    1534 } 
     1532            plr->SendUpdateWorldState(itr->second.max_world_state, (uint32)(itr->second.reqNum)); 
     1533    } 
     1534}