diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-16 18:12:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 18:12:03 +0300 |
commit | 048bd161341bdf5f57c9a460d390d343e7368439 (patch) | |
tree | 497e3e5428831bd6a648770c53ecb20828febda2 | |
parent | 225f499e1eae19946af8fb9347286a99bab99ac2 (diff) | |
parent | b5008d869eb23b601395e0e23ceda477e07ddd6a (diff) | |
download | hercules-048bd161341bdf5f57c9a460d390d343e7368439.tar.gz hercules-048bd161341bdf5f57c9a460d390d343e7368439.tar.bz2 hercules-048bd161341bdf5f57c9a460d390d343e7368439.tar.xz hercules-048bd161341bdf5f57c9a460d390d343e7368439.zip |
Merge pull request #1401 from Emistry/clif_showscript
Corrected the showscript packet
-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 f73553b72..ce88b32da 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17747,7 +17747,7 @@ void clif_ShowScript(struct block_list *bl, const char *message) WBUFW(buf,2) = len+8; WBUFL(buf,4) = bl->id; safestrncpy(WBUFP(buf,8),message,len); - clif->send(buf,WBUFW(buf,2),bl,ALL_CLIENT); + clif->send(buf,WBUFW(buf,2),bl,AREA); } void clif_status_change_end(struct block_list *bl, int tid, enum send_target target, int type) { |