summaryrefslogtreecommitdiff
path: root/src/emap/send.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-10-28 03:43:19 +0300
committerAndrei Karas <akaras@inbox.ru>2015-10-28 03:43:19 +0300
commit9438cc42d708801b73ebe1083e5a9043bdb4a29a (patch)
tree9d355aaa0fa4c8391ca7dd3ffd3c642f3142fe25 /src/emap/send.c
parent2a1492c2bdc85f2917775987d4f72660fcfed4b0 (diff)
downloadevol-hercules-9438cc42d708801b73ebe1083e5a9043bdb4a29a.tar.gz
evol-hercules-9438cc42d708801b73ebe1083e5a9043bdb4a29a.tar.bz2
evol-hercules-9438cc42d708801b73ebe1083e5a9043bdb4a29a.tar.xz
evol-hercules-9438cc42d708801b73ebe1083e5a9043bdb4a29a.zip
Fix sending player flags to other players.
Diffstat (limited to 'src/emap/send.c')
-rw-r--r--src/emap/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/send.c b/src/emap/send.c
index 3984421..981d585 100644
--- a/src/emap/send.c
+++ b/src/emap/send.c
@@ -187,7 +187,7 @@ void send_pc_info(struct block_list* bl1,
if (tsd)
{
struct SessionExt *tdata = session_get_bysd(tsd);
- if (!tdata || tdata->clientVersion < 4)
+ if (!tdata || (bl1 != bl2 && tdata->clientVersion < 4))
return;
}