From 153bed682f4a9c1ca5eca377b9ebea56e07bfc23 Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Fri, 7 Jun 2024 22:21:22 -0300 Subject: [PATCH] Fixed an issue in the backend of augmentation evoker where the spell cache wasn't getting created on data insertion --- functions/spec_augmentation.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/spec_augmentation.lua b/functions/spec_augmentation.lua index 9e231bc3..aa8ac225 100644 --- a/functions/spec_augmentation.lua +++ b/functions/spec_augmentation.lua @@ -476,6 +476,7 @@ function augmentationFunctions.BuffRefresh(token, time, sourceSerial, sourceName local attributeGained = v2 if (type(attributeGained) == "number") then Details222.DebugMsg("Ebon Might Refreshed!, but the evoker was not found in the cache (2), adding:", sourceName, sourceSerial, targetName, targetSerial) + augmentationCache.ebon_might[targetSerial] = {} --This is needed because the cache was nil table.insert(augmentationCache.ebon_might[targetSerial], {sourceSerial, sourceName, sourceFlags, attributeGained}) end end