diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-13 16:06:32 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-13 16:06:32 +0000 |
commit | 996f20c134b0aa6de62b06b286b626b950527479 (patch) | |
tree | f0d7df0e3c89700987a2711f8f7d479b179dcf58 /src/map/status.c | |
parent | 78748079288acbd6e5fc7513baa70cf5b0a9a330 (diff) | |
download | hercules-996f20c134b0aa6de62b06b286b626b950527479.tar.gz hercules-996f20c134b0aa6de62b06b286b626b950527479.tar.bz2 hercules-996f20c134b0aa6de62b06b286b626b950527479.tar.xz hercules-996f20c134b0aa6de62b06b286b626b950527479.zip |
- Fixed SG_FUSION costing SP to deactivate.
- Some cleaning up at pc_setpos to prevent calling pc_clean_skilltree
- Added pc_clean_skilltree on pc_recv_reg
- Enabled use of TF_HIDING while Cloaked.
- pc_resetstate won't remove wedding skills now
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5268 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 56205c02b..5841c38d9 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -708,8 +708,8 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, int if (sc->option&OPTION_HIDE && skill_num != TF_HIDING && skill_num != AS_GRIMTOOTH
&& skill_num != RG_BACKSTAP && skill_num != RG_RAID)
return 0;
- if (sc->option&OPTION_CLOAK && skill_num == TF_HIDING)
- return 0;
+// if (sc->option&OPTION_CLOAK && skill_num == TF_HIDING)
+// return 0; //Latest reports indicate Hiding is usable while Cloaking. [Skotlex]
if (sc->option&OPTION_CHASEWALK && skill_num != ST_CHASEWALK)
return 0;
}
|