diff options
author | Haru <haru@dotalux.com> | 2014-09-20 15:16:56 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-09-20 15:22:14 +0200 |
commit | b0006317e5cc4a48cd5b8a501b94813cd3b93670 (patch) | |
tree | 82e5f26c5ea7139adc824ee9273cb547425512b6 /src/map/mercenary.c | |
parent | 9d91a8ea819c24df708b89d6dc0b98c3fea36876 (diff) | |
download | hercules-b0006317e5cc4a48cd5b8a501b94813cd3b93670.tar.gz hercules-b0006317e5cc4a48cd5b8a501b94813cd3b93670.tar.bz2 hercules-b0006317e5cc4a48cd5b8a501b94813cd3b93670.tar.xz hercules-b0006317e5cc4a48cd5b8a501b94813cd3b93670.zip |
Replaced hardcoded values with constants for status_change_start's flag
- Please use the values from enum scstart_flag when calling
status_change_start or related functions.
- This also applies to the sc_start script commands.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r-- | src/map/mercenary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c index 80bcfdf05..a1503e97a 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -362,7 +362,7 @@ int mercenary_killbonus(struct mercenary_data *md) const enum sc_type scs[] = { SC_MER_FLEE, SC_MER_ATK, SC_MER_HP, SC_MER_SP, SC_MER_HIT }; int index = rnd() % ARRAYLENGTH(scs); - sc_start(NULL,&md->bl, scs[index], 100, rnd() % 5, 600000); + sc_start(NULL,&md->bl, scs[index], 100, rnd() % 5, 600000); return 0; } |