From 4d5d0187d3b7f7e142ff83c761a8442d9a8cab44 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 15 Mar 2016 16:27:33 +0300 Subject: Hide area packets from hidden players/gms. --- src/map/clif.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/map/clif.c b/src/map/clif.c index 8aa225878..fd1770366 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -406,8 +406,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) { -- cgit v1.2.3-70-g09d2