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/mob.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/mob.c')
-rw-r--r-- | src/map/mob.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index fd2c4213f..ffab804a6 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -418,7 +418,8 @@ bool mob_ksprotected(struct block_list *src, struct block_list *target) { return true; } while(0); - status->change_start(NULL, target, SC_KSPROTECTED, 10000, sd->bl.id, sd->state.noks, sd->status.party_id, sd->status.guild_id, battle_config.ksprotection, 0); + status->change_start(NULL, target, SC_KSPROTECTED, 10000, sd->bl.id, sd->state.noks, + sd->status.party_id, sd->status.guild_id, battle_config.ksprotection, SCFLAG_NONE); return false; } |