diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/clif.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index cbdf0c080..09c5c6dae 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2010/06/13 + * 'clif_hpmeter' shouldn't send the packet to the player himself. [Inkfish] 2010/06/10 * Rev. 14336 Updated SC_ITEMBOOST to work similar to how it used to in r11351. [L0ne_W0lf] - Will not boost drop rates past 90%, but ignores those already greater than. diff --git a/src/map/clif.c b/src/map/clif.c index 75797a821..65df60718 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -5987,7 +5987,7 @@ int clif_hpmeter_sub(struct block_list *bl, va_list ap) nullpo_retr(0, sd); nullpo_retr(0, tsd); - if( !tsd->fd ) + if( !tsd->fd || tsd == sd ) return 0; if( (level = pc_isGM(tsd)) >= battle_config.disp_hpmeter && level >= pc_isGM(sd) ) |