From 97628042e00779d76a873b12b9e554c4c4eac0a2 Mon Sep 17 00:00:00 2001 From: Peter Balaz Date: Sun, 1 Feb 2026 19:25:22 +0100 Subject: [PATCH] fix: npc and summons not casting --- src/game/chars/CCharNPC.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/chars/CCharNPC.cpp b/src/game/chars/CCharNPC.cpp index 5ce9efb1a..2b9faa346 100644 --- a/src/game/chars/CCharNPC.cpp +++ b/src/game/chars/CCharNPC.cpp @@ -340,4 +340,6 @@ void CChar::NPC_CreateTrigger() if (iRet != TRIGRET_RET_FALSE && iRet != TRIGRET_RET_DEFAULT) return; } + if (m_pNPC) + NPC_GetAllSpellbookSpells(); }