diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-27 00:53:26 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-27 00:53:26 +0000 |
commit | 1d699d1f9ba6facaba5f6e817d9b6b2730d6872e (patch) | |
tree | c62e085c90ad262ba338cce38f55c895dc40e7a5 | |
parent | 760a86e1c577f776986f4558726a1784317037bb (diff) | |
download | hercules-1d699d1f9ba6facaba5f6e817d9b6b2730d6872e.tar.gz hercules-1d699d1f9ba6facaba5f6e817d9b6b2730d6872e.tar.bz2 hercules-1d699d1f9ba6facaba5f6e817d9b6b2730d6872e.tar.xz hercules-1d699d1f9ba6facaba5f6e817d9b6b2730d6872e.zip |
- Kaite and Assumptio no longer stack. One will remove the other in the same way Assumptio and Kyrie do.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9722 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f058c28e3..0215c7f8d 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/01/26 + * Kaite and Assumptio no longer stack. One will remove the other in the + same way Assumptio and Kyrie do. * Made homunculus renaming go through the char-server so it can be validated against the allowed characters setting. * Added battle config hom_rename so you can enable renaming multiple times diff --git a/src/map/status.c b/src/map/status.c index ac05fcb9f..0620b0c0f 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4820,7 +4820,14 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val case SC_ASSUMPTIO: if(sc->data[SC_KYRIE].timer!=-1) status_change_end(bl,SC_KYRIE,-1); + if(sc->data[SC_KAITE].timer!=-1) + status_change_end(bl,SC_KAITE,-1); break; + case SC_KAITE: + if(sc->data[SC_ASSUMPTIO].timer!=-1 ) + status_change_end(bl,SC_ASSUMPTIO,-1); + break; + case SC_CARTBOOST: if(sc->data[SC_DECREASEAGI].timer!=-1 ) { //Cancel Decrease Agi, but take no further effect [Skotlex] |