From 79780fb0a005ff65ecb8012de2e05c75ebeaffae Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Thu, 10 Aug 2023 13:40:17 -0400 Subject: [PATCH] Archivist double spell fix Archivist double spell fix -nanothief --- trunk/include/inc_newspellbook.nss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/trunk/include/inc_newspellbook.nss b/trunk/include/inc_newspellbook.nss index 57217e0f..64f18a13 100644 --- a/trunk/include/inc_newspellbook.nss +++ b/trunk/include/inc_newspellbook.nss @@ -771,6 +771,11 @@ void SetupSpells(object oPC, int nClass) { int nSpellLevel, nSlot, nSlots, nSpellbookID; string sArrayName2, sIDX; + + // clearing existing spells + persistant_array_delete(oPC, sArrayName); + persistant_array_create(oPC, sArrayName); + for(nSpellLevel = 0; nSpellLevel <= 9; nSpellLevel++) { sArrayName2 = "Spellbook" + IntToString(nSpellLevel) + "_" + sClass; // Minor optimisation: cache the array name string for multiple uses