From 0e35701872e9c1f92e4688a88a2d5a0790471546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sun, 2 Aug 2026 06:56:30 +0900 Subject: [PATCH] Enable Sakray homunculus property packet (#10061) --- src/map/clif.cpp | 2 +- src/map/packets_struct.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index db6a8b910a0..30415c8ff56 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -1824,7 +1824,7 @@ void clif_homunculus_updatestatus( const map_session_data& sd, _sp type ) { /// 022e .24B .B .W .W .W .W .W .W .W .W .W .W .W .W .W .W .W .W .L .L .W .W (ZC_PROPERTY_HOMUN) /// 09f7 .24B .B .W .W .W .W .W .W .W .W .W .W .W .W .L .L .W .W .L .L .W .W (ZC_PROPERTY_HOMUN_2) void clif_hominfo( const map_session_data* sd, const homun_data *hd, int32 flag ){ -#if PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO) +#if PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || PACKETVER_SAK_NUM >= 20080618 || defined(PACKETVER_ZERO) nullpo_retv( sd ); nullpo_retv( hd ); diff --git a/src/map/packets_struct.hpp b/src/map/packets_struct.hpp index 52d1555d9e9..f86edcc3800 100644 --- a/src/map/packets_struct.hpp +++ b/src/map/packets_struct.hpp @@ -2852,7 +2852,7 @@ struct PACKET_ZC_PROPERTY_HOMUN { uint16 range; } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_PROPERTY_HOMUN, 0x09f7); -#elif PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO) +#elif PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || PACKETVER_SAK_NUM >= 20080618 || defined(PACKETVER_ZERO) // PACKET_ZC_PROPERTY_HOMUN1 struct PACKET_ZC_PROPERTY_HOMUN { int16 packetType;