diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 2 | ||||
-rw-r--r-- | src/map/mob.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 097dd3c77..be3309aa3 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11968,7 +11968,7 @@ int clif_parse(int fd) { ) //Only execute the function when there's an sd (except for debug/wanttoconnect packets)
packet_db[packet_ver][cmd].func(fd, sd);
}
-#ifdef DUMP_UNKNOWN_PACKET
+#if DUMP_UNKNOWN_PACKET
else if (battle_config.error_log)
{
int i;
diff --git a/src/map/mob.c b/src/map/mob.c index 4772d5b60..927c180a6 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -843,7 +843,7 @@ static int mob_ai_sub_hard_changechase(struct block_list *bl,va_list ap) return 0; if(battle_check_range (&md->bl, bl, md->status.rhw.range)) - { + { (*target) = bl; md->target_id=bl->id; md->min_chase= md->db->range3; |