summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-12-13 23:45:02 -0500
committerMadCamel <madcamel@gmail.com>2009-12-13 23:45:02 -0500
commit113fcc4f0a7a0921e94bc415515dd4b393a29d60 (patch)
treeaaa3974e0dae69fec04919a7b5d06dab006a6d76 /src/map/mob.c
parent79fa54ff8b0e50fe2b70f36573ed5e2cd22eedda (diff)
parentdad2bd80f6e05813715739cc2a047d3a4862b8af (diff)
downloadtmwa-113fcc4f0a7a0921e94bc415515dd4b393a29d60.tar.gz
tmwa-113fcc4f0a7a0921e94bc415515dd4b393a29d60.tar.bz2
tmwa-113fcc4f0a7a0921e94bc415515dd4b393a29d60.tar.xz
tmwa-113fcc4f0a7a0921e94bc415515dd4b393a29d60.zip
Merge commit 'tmw/master'v2009.12.25
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 5a0bedc..f3822c4 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -2335,7 +2335,7 @@ int mob_damage(struct block_list *src,struct mob_data *md,int damage,int type)
if(src && src->type == BL_MOB && ((struct mob_data*)src)->state.special_mob_ai){
struct mob_data *md2 = (struct mob_data *)src;
struct block_list *master_bl = map_id2bl(md2->master_id);
- if (master_bl->type == BL_PC) {
+ if (master_bl && master_bl->type == BL_PC) {
MAP_LOG_PC(((struct map_session_data *)master_bl), "MOB-TO-MOB-DMG FROM MOB%d %d TO MOB%d %d FOR %d",
md2->bl.id, md2->class,
md->bl.id, md->class,