summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-15 16:27:33 +0300
committerAndrei Karas <akaras@inbox.ru>2017-05-10 19:04:53 +0300
commit1e474fcb57b72aa9012c7dd16d5d89aac4dce399 (patch)
treeb3e3b9b955715e212c040c205f385efd7afa4fb3
parentd961ab29ed635fdf5ff4ffa1dcf1ebbd013e750e (diff)
downloadhercules-1e474fcb57b72aa9012c7dd16d5d89aac4dce399.tar.gz
hercules-1e474fcb57b72aa9012c7dd16d5d89aac4dce399.tar.bz2
hercules-1e474fcb57b72aa9012c7dd16d5d89aac4dce399.tar.xz
hercules-1e474fcb57b72aa9012c7dd16d5d89aac4dce399.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 e70857ab6..35edf040e 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) {