diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-06 17:17:26 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-06 17:17:26 +0000 |
commit | 5ca6022c40792a839c62f370c2671d802811f383 (patch) | |
tree | d6763838a3857857368fe0e7a82ee046e2d34ad2 /src/map/mob.c | |
parent | fe759b1f276fc8f904da206717a278fefa9a7a17 (diff) | |
download | hercules-5ca6022c40792a839c62f370c2671d802811f383.tar.gz hercules-5ca6022c40792a839c62f370c2671d802811f383.tar.bz2 hercules-5ca6022c40792a839c62f370c2671d802811f383.tar.xz hercules-5ca6022c40792a839c62f370c2671d802811f383.zip |
- Fixed char-server not sending party status update when a member logs on/off
- Fixed crash when parsing guild member information change from the char-server when the specified character is not found in the guild.
- Fixed MvP mobs giving exp when killed even if they shouldn't
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9802 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 7434aae3a..2d8c2591b 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2058,7 +2058,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) double exp; //mapflag: noexp check [Lorky] - if (map[m].flag.nobaseexp || !(type&2)) + if (map[m].flag.nobaseexp || type&2) exp =1; else { exp = md->db->mexp; |