From 255c31999b9b99cc0e9f63ea2883630bfb8af2b9 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Sat, 18 Jan 2025 22:48:45 +0100 Subject: [PATCH] Fix parsing for Grand Spectrum pob: https://pobb.in/v3qpSIuYSi6A Closes https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/issues/270 Signed-off-by: Tomas Slusny --- 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 60c59162..d01a236d 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -1356,7 +1356,7 @@ local modTagList = { ["per allocated mastery passive skill"] = { tag = { type = "Multiplier", var = "AllocatedMastery" } }, ["per allocated notable passive skill"] = { tag = { type = "Multiplier", var = "AllocatedNotable" } }, ["for each different type of mastery you have allocated"] = { tag = { type = "Multiplier", var = "AllocatedMasteryType" } }, - ["per grand spectrum"] = { tag = { type = "Multiplier", var = "GrandSpectrum" } }, + ["per socketed grand spectrum"] = { tag = { type = "Multiplier", var = "GrandSpectrum" } }, ["per second you've been stationary, up to a maximum of (%d+)%%"] = function(num) return { tag = { type = "Multiplier", var = "StationarySeconds", limit = tonumber(num), limitTotal = true } } end, ["per elemental ailment you've inflicted recently"] = { tag = { type = "Multiplier", var = "AppliedAilmentsRecently" } }, ["per tailwind"] = { tag = { type = "Multiplier", var = "Tailwind" } },