Ver Fonte

Fixed 'unit walking in sight' packet missing the 'level' value (mistake in r11791)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11847 54d463be-8e91-2dee-dedb-b68131a5f0ec
ultramage há 17 anos atrás
pai
commit
a6400393da
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/map/clif.c

+ 1 - 1
src/map/clif.c

@@ -907,7 +907,7 @@ static int clif_set_unit_walking(struct block_list* bl, struct unit_data* ud, un
 	return packet_len(0x1da);
 #else
 	// sc->option and sc->opt3 changed from W to L
-	memmove(WBUFP(buf,52), WBUFP(buf,48), 9);
+	memmove(WBUFP(buf,52), WBUFP(buf,48), 12);
 	WBUFL(buf,48) = (sc)? sc->opt3 : 0;
 	memmove(WBUFP(buf,16), WBUFP(buf,14), 32);
 	WBUFL(buf,12) = (sc)? sc->option : 0;