summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-15 16:27:33 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-13 19:40:09 +0300
commitd8bb526f082d30498bfa9337cc1908d8a5721e00 (patch)
tree738c4528d8ff7d2712c0f974812c0df2f2f057de
parent32954c0765d4813d8ecddfecf70b51ec3207a3b9 (diff)
downloadhercules-d8bb526f082d30498bfa9337cc1908d8a5721e00.tar.gz
hercules-d8bb526f082d30498bfa9337cc1908d8a5721e00.tar.bz2
hercules-d8bb526f082d30498bfa9337cc1908d8a5721e00.tar.xz
hercules-d8bb526f082d30498bfa9337cc1908d8a5721e00.zip
Hide area packets from hidden players/gms.
-rw-r--r--src/map/clif.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 3069e95ad..2fa01df66 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -414,8 +414,14 @@ bool clif_send(const void* buf, int len, struct block_list* bl, enum send_target
sd = BL_CAST(BL_PC, bl);
- switch(type) {
+ if (sd != NULL && pc_isinvisible(sd)) {
+ if (type == AREA || type == BG || type == BG_AREA)
+ type = SELF;
+ else if (type == AREA_WOS || type == BG_WOS || type == BG_AREA_WOS)
+ return true;
+ }
+ switch(type) {
case ALL_CLIENT: //All player clients.
iter = mapit_getallusers();
while ((tsd = BL_UCAST(BL_PC, mapit->next(iter))) != NULL) {