Compiler error lnk @clif.c

chojuro

New member
Messages
51
Points
0
this line make me having error

from this

//To identify disguised characters.
static inline bool disguised(struct block_list* bl)
{
struct map_session_data* sd = BL_CAST(BL_PC, bl);
if (sd == NULL || sd->disguise == -1)
return false;
return true;
}


to this

//To identify disguised characters.
bool clif_isdisguised(struct block_list* bl)
{
struct map_session_data* sd = BL_CAST(BL_PC, bl);
if (sd == NULL || sd->disguise == -1)
return false;
return true;
}



image.png

 
no sure what is your issue.

why you changed

clif_isdisguised


to

disguised


?

 
Back
Top