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/chrif.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/chrif.c')
-rw-r--r-- | src/map/chrif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 4c8cd747b..34e92bee0 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -1178,7 +1178,8 @@ bool chrif_load_scdata(int fd) { for (i = 0; i < count; i++) { data = (struct status_change_data*)RFIFOP(fd,14 + i*sizeof(struct status_change_data)); - status->change_start(NULL, &sd->bl, (sc_type)data->type, 10000, data->val1, data->val2, data->val3, data->val4, data->tick, 15); + status->change_start(NULL, &sd->bl, (sc_type)data->type, 10000, data->val1, data->val2, data->val3, data->val4, + data->tick, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK|SCFLAG_LOADED|SCFLAG_FIXEDRATE); } pc->scdata_received(sd); |