summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnieRuru <jeankof@ymail.com>2014-09-23 20:34:48 +0800
committerAnnieRuru <jeankof@ymail.com>2014-09-23 20:34:48 +0800
commit2bc31ad003a8c3283043c62d012a57edde794fba (patch)
treeec44edf1685892c394219f82ff92e1800d91e081
parenta686eea9469d52afa4a3d2360e5382f9044de009 (diff)
downloadhercules-2bc31ad003a8c3283043c62d012a57edde794fba.tar.gz
hercules-2bc31ad003a8c3283043c62d012a57edde794fba.tar.bz2
hercules-2bc31ad003a8c3283043c62d012a57edde794fba.tar.xz
hercules-2bc31ad003a8c3283043c62d012a57edde794fba.zip
Fixed bug 8365
*unittalk script command will send the message twice to the invoking character hercules.ws/board/tracker/issue-8365-bug-unittalk-twice-message/
-rw-r--r--src/map/script.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c
index f46ee78fe..f776b1b63 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -15658,8 +15658,6 @@ BUILDIN(unittalk) {
StrBuf->Init(&sbuf);
StrBuf->Printf(&sbuf, "%s : %s", status->get_name(bl), message);
clif->disp_overhead(bl, StrBuf->Value(&sbuf));
- if( bl->type == BL_PC )
- clif->message(((TBL_PC*)bl)->fd, StrBuf->Value(&sbuf));
StrBuf->Destroy(&sbuf);
}