diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-10 14:57:48 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-13 16:04:45 +0100 |
commit | f00431e91557205ae5373a8afb1b91c6b1350590 (patch) | |
tree | ed9af11ae55ec5971aa78b1553137d1e26f864b8 /src/map/status.c | |
parent | d4737c7141d936133493a79bde34af944e3d0c7c (diff) | |
download | hercules-f00431e91557205ae5373a8afb1b91c6b1350590.tar.gz hercules-f00431e91557205ae5373a8afb1b91c6b1350590.tar.bz2 hercules-f00431e91557205ae5373a8afb1b91c6b1350590.tar.xz hercules-f00431e91557205ae5373a8afb1b91c6b1350590.zip |
ItemDB Updates:
- Added 'Malang Cat Can' item.
- Added 'Ru Blue Spear' item.
- Change the item id of 'RWC Silver Brooch' from 2998 to 2999.
- Follow up https://github.com/HerculesWS/Hercules/commit/e511dcf5940cee7a6e43744543a5ca96bc23cf84, thanks to zackdreaver.
- item_db.conf renewal minor clean-up xD
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 699e7342b..da2892f98 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -830,6 +830,7 @@ void initChangeTables(void) { status->dbs->IconChangeTable[SC_ATKER_ASPD] = SI_ATKER_ASPD; status->dbs->IconChangeTable[SC_ATKER_MOVESPEED] = SI_ATKER_MOVESPEED; status->dbs->IconChangeTable[SC_CUP_OF_BOZA] = SI_CUP_OF_BOZA; + status->dbs->IconChangeTable[SC_OVERLAPEXPUP] = SI_OVERLAPEXPUP; // Eden Crystal Synthesis status->dbs->IconChangeTable[SC_QUEST_BUFF1] = SI_QUEST_BUFF1; @@ -8524,6 +8525,7 @@ int status_change_start(struct block_list *src, struct block_list *bl, enum sc_t break; case SC_CASH_PLUSEXP: case SC_CASH_PLUSONLYJOBEXP: + case SC_OVERLAPEXPUP: if (val1 < 0) val1 = 0; break; @@ -9374,6 +9376,7 @@ int status_change_start(struct block_list *src, struct block_list *bl, enum sc_t case SC_CASH_PLUSONLYJOBEXP: case SC_MONSTER_TRANSFORM: case SC_CASH_RECEIVEITEM: + case SC_OVERLAPEXPUP: val_flag |= 1; break; } |