diff options
author | Michieru <Michieru@users.noreply.github.com> | 2014-09-19 15:28:56 +0200 |
---|---|---|
committer | Michieru <Michieru@users.noreply.github.com> | 2014-09-19 15:28:56 +0200 |
commit | acc4d2eb875ddf67898ae0ac443e76de2d640daa (patch) | |
tree | 72a2c649d6c8c434abe7cb05a0d6c00e667e07d9 /src/map/clif.c | |
parent | 0b617096e7c81a0861b362769a835f23118431dc (diff) | |
download | hercules-acc4d2eb875ddf67898ae0ac443e76de2d640daa.tar.gz hercules-acc4d2eb875ddf67898ae0ac443e76de2d640daa.tar.bz2 hercules-acc4d2eb875ddf67898ae0ac443e76de2d640daa.tar.xz hercules-acc4d2eb875ddf67898ae0ac443e76de2d640daa.zip |
Update official Homunculus renewal stats (bug:6970) http://hercules.ws/board/tracker/issue-6970-homunculus-renewal-stats/
Follow up (bug 8348): https://github.com/HerculesWS/Hercules/commit/ddc52570a9bf694cdba6445bc02350a94856a583
Update official overbrand damage (special thanks to Rytech)
The skill damage is no longer affected by your base level. It is now affected by the enemy's base level (special thanks to Rytech)
Updated the list of skills usable while mounted on a mado. (special thanks to Rytech)
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 18cc987d4..308f419a7 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1368,7 +1368,7 @@ bool clif_spawn(struct block_list *bl) TBL_MOB *md = ((TBL_MOB*)bl); if(md->special_state.size==SZ_BIG) // tiny/big mobs [Valaris] clif->specialeffect(&md->bl,423,AREA); - else if(md->special_state.size==SZ_SMALL) + else if(md->special_state.size==SZ_MEDIUM) clif->specialeffect(&md->bl,421,AREA); } break; |