diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-05 15:39:46 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-05 15:39:46 +0000 |
commit | 53c1056d5f11c8ecd8caedae24765e922017fede (patch) | |
tree | e9aadb1420a3f5b3070f5c56e202380075698bd1 /src/map/status.c | |
parent | 2aa019b4313ff70b17ad7be44867646984728f6e (diff) | |
download | hercules-53c1056d5f11c8ecd8caedae24765e922017fede.tar.gz hercules-53c1056d5f11c8ecd8caedae24765e922017fede.tar.bz2 hercules-53c1056d5f11c8ecd8caedae24765e922017fede.tar.xz hercules-53c1056d5f11c8ecd8caedae24765e922017fede.zip |
- Implemented Firepillar's 'target cannot move for 0.2 sec x hit' property.
- Corrected Earthquake so it behaves as explained in the development topics.
- Corrected a missing opt_flag = 0 when using SC_INCATKRATE on mobs.
- Added a missing line to actually unequip unallowed compounded cards when changing maps.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12299 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index eae8805e4..11198f28f 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6594,7 +6594,10 @@ int status_change_end(struct block_list* bl, enum sc_type type, int tid) break; case SC_INCATKRATE: //Simulated Explosion spirits effect. if (bl->type != BL_MOB) + { + opt_flag = 0; break; + } case SC_EXPLOSIONSPIRITS: sc->opt3 &= ~0x8; opt_flag = 0; |