diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-16 15:45:25 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-16 15:45:25 +0000 |
commit | 6170c4fe2a6dc695a87b79c7d5d0aa4b395af7fa (patch) | |
tree | a52e5355144c31c527d5adbde4828f9323efec58 /src/map | |
parent | 795045dbbd8269678b689ac00cae0138459c3a7a (diff) | |
download | hercules-6170c4fe2a6dc695a87b79c7d5d0aa4b395af7fa.tar.gz hercules-6170c4fe2a6dc695a87b79c7d5d0aa4b395af7fa.tar.bz2 hercules-6170c4fe2a6dc695a87b79c7d5d0aa4b395af7fa.tar.xz hercules-6170c4fe2a6dc695a87b79c7d5d0aa4b395af7fa.zip |
Skot please fix the remaining code by removing the fake npc after sending the input.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6116 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index b90a66785..c32274ff9 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1715,7 +1715,7 @@ void send_fake_npc(struct map_session_data *sd, int npcid){ WFIFOW(fd,0)=0x78;
WFIFOL(fd,2)=npcid;
WFIFOW(fd,12)=OPTION_HIDE;
- WFIFOW(fd,14)=111;
+ WFIFOW(fd,14)=123;
WFIFOPOS(fd,46,sd->bl.x,sd->bl.y);
WFIFOB(fd,49)=5;
WFIFOB(fd,50)=5;
|