Browse Source

- Fixed clif.c dumping unknown packets by default... (oops, used an #ifdef where an #if had to go)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9335 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 18 năm trước cách đây
mục cha
commit
436a8a53cb
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      src/map/clif.c
  2. 1 1
      src/map/mob.c

+ 1 - 1
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;

+ 1 - 1
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;