From b69f7b8a5755a54df963c18ca2cdef530f05658b Mon Sep 17 00:00:00 2001 From: hemagx Date: Sat, 26 Dec 2015 11:17:14 +0200 Subject: Change all TBL_PC to struct map_session_data as per style guidelines Signed-off-by: Haru --- src/map/status.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/map/status.h') diff --git a/src/map/status.h b/src/map/status.h index 55df4cdab..180c36c72 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -2123,12 +2123,12 @@ struct status_change { #define status_get_size(bl) (status->get_status_data(bl)->size) #define status_get_mode(bl) (status->get_status_data(bl)->mode) -#define status_get_homstr(bl) (st->str + ((TBL_HOM*)bl)->homunculus.str_value) -#define status_get_homagi(bl) (st->agi + ((TBL_HOM*)bl)->homunculus.agi_value) -#define status_get_homvit(bl) (st->vit + ((TBL_HOM*)bl)->homunculus.vit_value) -#define status_get_homint(bl) (st->int_ + ((TBL_HOM*)bl)->homunculus.int_value) -#define status_get_homdex(bl) (st->dex + ((TBL_HOM*)bl)->homunculus.dex_value) -#define status_get_homluk(bl) (st->luk + ((TBL_HOM*)bl)->homunculus.luk_value) +#define status_get_homstr(bl) (st->str + ((struct homun_data *)bl)->homunculus.str_value) +#define status_get_homagi(bl) (st->agi + ((struct homun_data *)bl)->homunculus.agi_value) +#define status_get_homvit(bl) (st->vit + ((struct homun_data *)bl)->homunculus.vit_value) +#define status_get_homint(bl) (st->int_ + ((struct homun_data *)bl)->homunculus.int_value) +#define status_get_homdex(bl) (st->dex + ((struct homun_data *)bl)->homunculus.dex_value) +#define status_get_homluk(bl) (st->luk + ((struct homun_data *)bl)->homunculus.luk_value) //Short version, receives rate in 1->100 range, and does not uses a flag setting. #define sc_start(src, bl, type, rate, val1, tick) (status->change_start((src),(bl),(type),100*(rate),(val1),0,0,0,(tick),SCFLAG_NONE)) -- cgit v1.2.3-70-g09d2