From 43f5094620a9bd094cc014954db7697e4c83d8f1 Mon Sep 17 00:00:00 2001 From: Jittapan Pluemsumran Date: Mon, 10 Oct 2022 11:06:23 +0700 Subject: [PATCH] Fixed "Unequip All" button not working on main server clients. Fixes #7337 (#7338) --- src/map/clif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 02d6483f44..887d63aa21 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -22366,7 +22366,7 @@ void clif_unequipall_reply( struct map_session_data* sd, bool failed ){ } void clif_parse_unequipall( int fd, struct map_session_data* sd ){ -#if PACKETVER_RE_NUM >= 20211103 || PACKETVER_ZERO_NUM >= 20210818 +#if PACKETVER_MAIN_NUM >= 20210818 || PACKETVER_RE_NUM >= 20211103 || PACKETVER_ZERO_NUM >= 20210818 if( pc_cant_act( sd ) ){ clif_unequipall_reply( sd, true ); return;