diff options
author | Dastgir <dastgir@users.noreply.github.com> | 2015-06-12 20:03:10 +0530 |
---|---|---|
committer | Dastgir <dastgir@users.noreply.github.com> | 2015-06-12 20:03:10 +0530 |
commit | a989eeeba89436dbf088ed115e18228e4a43a117 (patch) | |
tree | 30f0e20ade2caa43496e1b4d4a847b28239ae3c9 /src/map/status.c | |
parent | 64dfaf2c8c8be7ff288ea88a64eddfeae1e364a4 (diff) | |
parent | 46c11b354fbc9e4f2d581142691b926d81e77c0d (diff) | |
download | hercules-a989eeeba89436dbf088ed115e18228e4a43a117.tar.gz hercules-a989eeeba89436dbf088ed115e18228e4a43a117.tar.bz2 hercules-a989eeeba89436dbf088ed115e18228e4a43a117.tar.xz hercules-a989eeeba89436dbf088ed115e18228e4a43a117.zip |
Merge pull request #535 from dastgir/RC_Player
RC_Player,RC_DemiPlayer,RC_NonDemiPlayer,RC_All and Ele_All implemented
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 299b732ff..fd75ef81c 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2222,7 +2222,7 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) { } bstatus->aspd_rate = 1000; bstatus->ele_lv = 1; - bstatus->race = RC_DEMIHUMAN; + bstatus->race = RC_PLAYER; // Autobonus pc->delautobonus(sd,sd->autobonus,ARRAYLENGTH(sd->autobonus),true); @@ -3032,7 +3032,7 @@ int status_calc_npc_(struct npc_data *nd, enum e_status_calc_opt opt) { nstatus->def_ele = ELE_NEUTRAL; nstatus->ele_lv = 1; - nstatus->race = RC_DEMIHUMAN; + nstatus->race = RC_PLAYER; nstatus->size = nd->size; nstatus->rhw.range = 1 + nstatus->size; nstatus->mode = (MD_CANMOVE|MD_CANATTACK); |