summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-05-01 00:13:12 +0000
committerKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-05-01 00:13:12 +0000
commitfeaced277b91754fdf6e825bac307d6a5c473e3f (patch)
treed438a5447fbe072ba5af5057761cc9819172b562 /src/map/clif.c
parentb1cc30a1cf4c81985174e7e89346e2a237ff99c1 (diff)
downloadhercules-feaced277b91754fdf6e825bac307d6a5c473e3f.tar.gz
hercules-feaced277b91754fdf6e825bac307d6a5c473e3f.tar.bz2
hercules-feaced277b91754fdf6e825bac307d6a5c473e3f.tar.xz
hercules-feaced277b91754fdf6e825bac307d6a5c473e3f.zip
Quest packet typo.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12675 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index d06e2bd07..30cc5b8ab 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -12243,7 +12243,7 @@ void clif_send_quest_status(struct map_session_data * sd, int quest_id, bool act
int fd = sd->fd;
WFIFOHEAD(fd, 7);
- WFIFOW(fd, 0) = 0x02B4;
+ WFIFOW(fd, 0) = 0x02B6;
WFIFOL(fd, 2) = quest_id;
WFIFOB(fd, 6) = active?1:0;
WFIFOSET(fd, 7);