diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-16 14:44:27 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-16 14:44:27 +0000 |
commit | d4e1028f77e7b03023901c16f6329414a8a3c24c (patch) | |
tree | 3774fe0e35508141be8b8c1cf5d2bee5940c1d9b /src/map/pc.c | |
parent | 8ff8d0f9ee285452ba7820c3fb333eddb042272b (diff) | |
download | hercules-d4e1028f77e7b03023901c16f6329414a8a3c24c.tar.gz hercules-d4e1028f77e7b03023901c16f6329414a8a3c24c.tar.bz2 hercules-d4e1028f77e7b03023901c16f6329414a8a3c24c.tar.xz hercules-d4e1028f77e7b03023901c16f6329414a8a3c24c.zip |
- Implemented Intravision as it should be. Thanks to HelloKitty2 for the captured packets.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9659 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a9f0f4d67..665056fb7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1702,8 +1702,10 @@ int pc_bonus(struct map_session_data *sd,int type,int val) sd->special_state.no_gemstone = 1; break; case SP_INTRAVISION: // Maya Purple Card effect allowing to see Hiding/Cloaking people [DracoRPG] - if(sd->state.lr_flag != 2) + if(sd->state.lr_flag != 2) { sd->special_state.intravision = 1; + clif_status_load(&sd->bl, SI_INTRAVISION, 1); + } break; case SP_SPLASH_RANGE: if(sd->state.lr_flag != 2 && sd->splash_range < val) |