summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorvalaris <valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-20 14:38:18 +0000
committervalaris <valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-20 14:38:18 +0000
commit2630f7d1fa82ff5a129efca35094da6b79a53fd0 (patch)
tree17b23dc7591e1d6f3bbf994067d9cc4eea72ee12 /src/map/clif.c
parentb22297197f06ac00eecf38fe98d7b9fdb5478a8a (diff)
downloadhercules-2630f7d1fa82ff5a129efca35094da6b79a53fd0.tar.gz
hercules-2630f7d1fa82ff5a129efca35094da6b79a53fd0.tar.bz2
hercules-2630f7d1fa82ff5a129efca35094da6b79a53fd0.tar.xz
hercules-2630f7d1fa82ff5a129efca35094da6b79a53fd0.zip
Removed use of emote packet to send red mute icon.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@270 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index aa74f4e87..b0b0546aa 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -7774,6 +7774,8 @@ void clif_parse_Emotion(int fd, struct map_session_data *sd) {
if (battle_config.basic_skill_check == 0 || pc_checkskill(sd, NV_BASIC) >= 2) {
WBUFW(buf,0) = 0xc0;
WBUFL(buf,2) = sd->bl.id;
+ if(RFIFOB(fd,2)==34) // prevent use of the mute emote [Valaris]
+ return;
WBUFB(buf,6) = RFIFOB(fd,2);
clif_send(buf, packet_len_table[0xc0], &sd->bl, AREA);
} else