diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-04 01:05:12 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-04 01:05:12 +0000 |
commit | 9948c02946e55229d5c9951ab9aaec3184611734 (patch) | |
tree | 930c8cb408746d30ca0bd18aeab977570bb78405 /src/map/atcommand.c | |
parent | 117a223dd15b22674d4d9fbec86fac03479c523f (diff) | |
download | hercules-9948c02946e55229d5c9951ab9aaec3184611734.tar.gz hercules-9948c02946e55229d5c9951ab9aaec3184611734.tar.bz2 hercules-9948c02946e55229d5c9951ab9aaec3184611734.tar.xz hercules-9948c02946e55229d5c9951ab9aaec3184611734.zip |
fixed @hide from not refreshing users who did not know about the @hide, bugreport:2266
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15376 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 5d629bdba..1c59b81a2 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1244,6 +1244,8 @@ ACMD_FUNC(hide) sd->pvp_timer = add_timer( gettick() + 200, pc_calc_pvprank_timer, sd->bl.id, 0 ); } } + //bugreport:2266 + map_foreachinmovearea(clif_insight, &sd->bl, AREA_SIZE, sd->bl.x, sd->bl.y, BL_ALL, &sd->bl); } else { sd->sc.option |= OPTION_INVISIBLE; sd->vd.class_ = INVISIBLE_CLASS; |