From 15710bc3e2ff176a628d1c2e63a333effe6bcdc0 Mon Sep 17 00:00:00 2001 From: "Guilherme G. Menaldo" Date: Sun, 28 Apr 2024 21:13:43 -0300 Subject: [PATCH] Fix value of "flag" in ZC_SKILL_SELECT_REQUEST it should always be 1 (meaning auto shadow spell) and not the number of skills in the list --- src/map/clif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/clif.c b/src/map/clif.c index aaad3fe9615..3254a3cbdf3 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -20868,7 +20868,7 @@ static int clif_autoshadowspell_list(struct map_session_data *sd) len = c * sizeof(*p->skillIds) + sizeof(*p); p->packetLength = len; - p->flag = c; + p->flag = 1; // 1 = auto shadow spell WFIFOSET(fd, len); } else {