diff options
author | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 08:46:26 +0000 |
---|---|---|
committer | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 08:46:26 +0000 |
commit | 5a735a416f33f355babfc150bcedcc220e684255 (patch) | |
tree | 0d2df8e8eba046bf84465fbdc4a89bc552a02cdc /src/map/status.c | |
parent | 4f68a6ef917b92df214a12dcef09cffdfa1e80ff (diff) | |
download | hercules-5a735a416f33f355babfc150bcedcc220e684255.tar.gz hercules-5a735a416f33f355babfc150bcedcc220e684255.tar.bz2 hercules-5a735a416f33f355babfc150bcedcc220e684255.tar.xz hercules-5a735a416f33f355babfc150bcedcc220e684255.zip |
Fixed bugreport:5586 SC_CAMOUFLAGE can be removed by using RA_CAMOUFLAGE again, also portals won't warp players under this status.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15902 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index a53a74e14..85dd32b0c 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8708,6 +8708,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const case SC_CLOAKINGEXCEED: case SC__INVISIBILITY: sc->option &= ~OPTION_CLOAK; + case SC_CAMOUFLAGE: opt_flag|= 2; break; case SC_CHASEWALK: |