diff options
author | Michieru <Michieru@users.noreply.github.com> | 2014-09-16 22:20:30 +0200 |
---|---|---|
committer | Michieru <Michieru@users.noreply.github.com> | 2014-09-16 22:20:30 +0200 |
commit | 8ab61745b81d1cf0602c7998f590aac8749187da (patch) | |
tree | aa21f15ade1aa219a2b092b901e6e349abe3d713 /src/map/status.c | |
parent | 219c35e699b03da7939c207627c09a70614a1b7b (diff) | |
download | hercules-8ab61745b81d1cf0602c7998f590aac8749187da.tar.gz hercules-8ab61745b81d1cf0602c7998f590aac8749187da.tar.bz2 hercules-8ab61745b81d1cf0602c7998f590aac8749187da.tar.xz hercules-8ab61745b81d1cf0602c7998f590aac8749187da.zip |
Follow rev: https://github.com/HerculesWS/Hercules/commit/0a24a4bb6340459a6128c39d13ab1bf37a5bc6b8
Fix bug: 7891: http://hercules.ws/board/tracker/issue-7891-estin-estun-breakfall-and-kick-stance/
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index e48b2931c..70a7fb2ce 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2470,7 +2470,7 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) { //Give them all modes except these (useful for clones) bstatus->mode = MD_MASK&~(MD_BOSS|MD_PLANT|MD_DETECTOR|MD_ANGRY|MD_TARGETWEAK); - bstatus->size = (sd->class_&JOBL_BABY)?SZ_MEDIUM:SZ_SMALL; + bstatus->size = (sd->class_&JOBL_BABY)?SZ_SMALL:SZ_MEDIUM; if (battle_config.character_size && (pc_isriding(sd) || pc_isridingdragon(sd)) ) { //[Lupus] if (sd->class_&JOBL_BABY) { if (battle_config.character_size&SZ_BIG) |