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;
}

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;
}
