summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index fa4d2f0bf..5e078b5c9 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -7016,7 +7016,7 @@ void clif_devotion(struct block_list *src, struct map_session_data *tsd)
void clif_spiritball(struct block_list *bl) {
unsigned char buf[16];
struct map_session_data *sd = BL_CAST(BL_PC,bl);
- TBL_HOM *hd = BL_CAST(BL_HOM,bl);
+ struct homun_data *hd = BL_CAST(BL_HOM,bl);
nullpo_retv(bl);
@@ -8409,7 +8409,7 @@ void clif_charnameack (int fd, struct block_list *bl)
break;
//[blackhole89]
case BL_HOM:
- memcpy(WBUFP(buf,6), ((TBL_HOM*)bl)->homunculus.name, NAME_LENGTH);
+ memcpy(WBUFP(buf,6), ((struct homun_data *)bl)->homunculus.name, NAME_LENGTH);
break;
case BL_MER:
memcpy(WBUFP(buf,6), ((TBL_MER*)bl)->db->name, NAME_LENGTH);