summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorVicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-18 03:52:18 +0000
committerVicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-18 03:52:18 +0000
commit08864b129bb4babc65d0f52538c50ecced1f226e (patch)
tree0ee368898ee0c5479d439c287c2198e8522bb32d /src/map/clif.c
parent5b981f638f4dc7b3fa0783552dabf3d588f81a72 (diff)
downloadhercules-08864b129bb4babc65d0f52538c50ecced1f226e.tar.gz
hercules-08864b129bb4babc65d0f52538c50ecced1f226e.tar.bz2
hercules-08864b129bb4babc65d0f52538c50ecced1f226e.tar.xz
hercules-08864b129bb4babc65d0f52538c50ecced1f226e.zip
cleaned the invisible fix a bit.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6148 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c25
1 files changed, 14 insertions, 11 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 1d2674ebb..506e31e76 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -1712,7 +1712,11 @@ int clif_scriptclose(struct map_session_data *sd, int npcid) {
return 0;
}
-void send_fake_npc(struct map_session_data *sd, int npcid){
+/*==========================================
+ *
+ *------------------------------------------
+ */
+void clif_sendfakenpc(struct map_session_data *sd, int npcid) {
int fd = sd->fd;
memset(WFIFOP(fd,0), 0, packet_len_table[0x78]);
WFIFOW(fd,0)=0x78;
@@ -1737,11 +1741,10 @@ int clif_scriptmenu(struct map_session_data *sd, int npcid, char *mes) {
nullpo_retr(0, sd);
- fd=sd->fd;
-
if(map_id2bl(npcid)->m < 0)
- send_fake_npc(sd, npcid);
+ clif_sendfakenpc(sd, npcid);
+ fd=sd->fd;
WFIFOW(fd,0)=0xb7;
WFIFOW(fd,2)=slen;
WFIFOL(fd,4)=npcid;
@@ -1759,11 +1762,11 @@ int clif_scriptinput(struct map_session_data *sd, int npcid) {
int fd;
nullpo_retr(0, sd);
- fd=sd->fd;
-
+
if(map_id2bl(npcid)->m < 0)
- send_fake_npc(sd, npcid);
+ clif_sendfakenpc(sd, npcid);
+ fd=sd->fd;
WFIFOHEAD(fd, packet_len_table[0x142]);
WFIFOW(fd,0)=0x142;
WFIFOL(fd,2)=npcid;
@@ -1780,11 +1783,11 @@ int clif_scriptinputstr(struct map_session_data *sd, int npcid) {
int fd;
nullpo_retr(0, sd);
- fd=sd->fd;
-
- if(map_id2bl(npcid)->m < 0)
- send_fake_npc(sd, npcid);
+ if(map_id2bl(npcid)->m < 0)
+ clif_sendfakenpc(sd, npcid);
+
+ fd=sd->fd;
WFIFOHEAD(fd, packet_len_table[0x1d4]);
WFIFOW(fd,0)=0x1d4;
WFIFOL(fd,2)=npcid;