summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-29 21:39:28 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-29 21:39:28 +0300
commitec1653bc2561565da6750493ea56495c63824456 (patch)
treee1de2616e509b3e8c630f7ccdca889809979e482
parent48b017b41c8e045bee30d17470db6f547682e4c5 (diff)
downloadevol-hercules-ec1653bc2561565da6750493ea56495c63824456.tar.gz
evol-hercules-ec1653bc2561565da6750493ea56495c63824456.tar.bz2
evol-hercules-ec1653bc2561565da6750493ea56495c63824456.tar.xz
evol-hercules-ec1653bc2561565da6750493ea56495c63824456.zip
Dont send pet talks to all players, but send it to area only.
-rw-r--r--src/emap/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/send.c b/src/emap/send.c
index 1c4f819..f0d7b66 100644
--- a/src/emap/send.c
+++ b/src/emap/send.c
@@ -324,7 +324,7 @@ void send_slave_say(TBL_PC *sd,
snprintf(buf, len, "%s's %s : %s", sd->status.name, name, message);
buf[len - 1] = 0;
- clif->GlobalMessage(bl, buf);
+ clif->disp_overhead(bl, buf);
aFree(buf);
}