summaryrefslogtreecommitdiff
path: root/src/map/intif.c
diff options
context:
space:
mode:
authorInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-07-26 06:01:10 +0000
committerInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-07-26 06:01:10 +0000
commite9a090774cb956ebb122698374be2a5360dd8b00 (patch)
tree62ed879dcb9e50038240a5ef8897808abf26c510 /src/map/intif.c
parentf9c3a2a80b9981a3102661928f5c2469e47d360c (diff)
downloadhercules-e9a090774cb956ebb122698374be2a5360dd8b00.tar.gz
hercules-e9a090774cb956ebb122698374be2a5360dd8b00.tar.bz2
hercules-e9a090774cb956ebb122698374be2a5360dd8b00.tar.xz
hercules-e9a090774cb956ebb122698374be2a5360dd8b00.zip
* Some updates of Quest Log system
- renamed table 'questlog' to 'quest' to avoid misunderstanding - updated main.sql - fixed the server can't load more than 16 quests - removed the MAX_QUEST limit. tests show the client can handle more than 100 quests. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13963 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r--src/map/intif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.c b/src/map/intif.c
index d077aa881..06f93f52e 100644
--- a/src/map/intif.c
+++ b/src/map/intif.c
@@ -1348,7 +1348,7 @@ int intif_parse_questlog(int fd)
if(!sd)
return -1;
- sd->avail_quests = sd->num_quests = (RFIFOB(fd, 2)-8)/sizeof(struct quest);
+ sd->avail_quests = sd->num_quests = (RFIFOW(fd, 2)-8)/sizeof(struct quest);
memset(&sd->quest_log, 0, sizeof(sd->quest_log));