From c59b6e35dd05dd11f61d3d8a19153862bb188439 Mon Sep 17 00:00:00 2001 From: Paliak <91493239+Paliak@users.noreply.github.com> Date: Wed, 24 Jan 2024 22:59:16 +0100 Subject: [PATCH] FIX: Crash when mousing over strength breakdown when using Flame's Advance. --- src/Modules/ModParser.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 30991488d5..d9cc8327dc 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -2248,7 +2248,7 @@ local specialModList = { ["non%-unique jewels cause small and notable passive skills in a (%a+) radius to also grant %+(%d+) to (%a+)"] = function(_, radius, val, attr) return { mod("ExtraJewelFunc", "LIST", {radius = (radius:gsub("^%l", string.upper)), type = "Other", func = function(node, out, data) if node and (node.type == "Notable" or node.type == "Normal") then - out:NewMod(firstToUpper(attr):match("^%a%l%l"), "BASE", val, data.modSource) + out:NewMod(firstToUpper(attr):match("^%a%l%l"), "BASE", tonumber(val), data.modSource) end end}, {type = "ItemCondition", itemSlot = "{SlotName}", rarityCond = "UNIQUE", neg = true}), } end,