From 20555128fdf242d46df8867d816ae93181f44f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sun, 2 Aug 2026 18:54:11 +0900 Subject: [PATCH] Refresh homunculus info before 0x07db (#10062) --- src/map/clif.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 30415c8ff56..133a84fad7b 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -1767,10 +1767,10 @@ int32 clif_spawn( const block_list* bl, bool walking ){ /// 0x7db .W .L (ZC_HO_PAR_CHANGE) /// 0xba5 .W .Q (ZC_HO_PAR_CHANGE2) void clif_homunculus_updatestatus( const map_session_data& sd, _sp type ) { -#if PACKETVER >= 20090610 if( !hom_is_active(sd.hd) ) return; +#if PACKETVER >= 20090610 PACKET_ZC_HO_PAR_CHANGE p = {}; p.packetType = HEADER_ZC_HO_PAR_CHANGE; @@ -1817,6 +1817,8 @@ void clif_homunculus_updatestatus( const map_session_data& sd, _sp type ) { } clif_send(&p, sizeof(p), &sd, SELF); +#else + clif_hominfo(&sd, sd.hd, 0); #endif }