From 9a274a0fdb76313ff46861682d1eda67898548e6 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 16 Jan 2007 19:49:33 +0000 Subject: - Fixed the next invoked skill after AbraCadabra not having requirements even when it is a different skill than the one chosen by AbraCadabra. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9661 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/char.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/char') diff --git a/src/char/char.c b/src/char/char.c index a7a199f12..f14a320ba 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -1739,9 +1739,11 @@ int mmo_char_send006b(int fd, struct char_session_data *sd) { WFIFOB(fd,j+101) = (p->int_ > UCHAR_MAX) ? UCHAR_MAX : p->int_; WFIFOB(fd,j+102) = (p->dex > UCHAR_MAX) ? UCHAR_MAX : p->dex; WFIFOB(fd,j+103) = (p->luk > UCHAR_MAX) ? UCHAR_MAX : p->luk; - WFIFOW(fd,j+104) = p->char_num; #if PACKETVER > 7 + WFIFOW(fd,j+104) = p->char_num; WFIFOW(fd,j+106) = 1; //TODO: Handle this rename bit: 0 to enable renaming +#else + WFIFOB(fd,j+104) = p->char_num; #endif } @@ -4453,4 +4455,3 @@ int do_init(int argc, char **argv) { return 0; } #endif //TXT_SQL_CONVERT - -- cgit v1.2.3-70-g09d2