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-06 00:27:20 +0300
commit70f07855905ab9e08ac3074b0964dbec175af0bd (patch)
tree9085124a27bfcface5cb959d8c4d089e944aa834
parent29fa84f436528acf9ce4299ea86917663ffd0207 (diff)
downloadhercules-70f07855905ab9e08ac3074b0964dbec175af0bd.tar.gz
hercules-70f07855905ab9e08ac3074b0964dbec175af0bd.tar.bz2
hercules-70f07855905ab9e08ac3074b0964dbec175af0bd.tar.xz
hercules-70f07855905ab9e08ac3074b0964dbec175af0bd.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 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) {