From 36bdbfbe8515b9f47bcaa3cfe04a44da1384baa6 Mon Sep 17 00:00:00 2001 From: Lucas Karsten Date: Sat, 15 Aug 2026 14:10:39 -0300 Subject: [PATCH] Parse "+#% to Maximum Quality" Breach Ring and Refined Breach Ring carry "+20% to Maximum Quality" and "+25% to Maximum Quality" as their implicit, and the Breachlord's prefix grants the same line. Only the "Maximum Quality is #%" wording was handled, so those items showed the implicit as an unsupported modifier. Added alongside it, display only, matching how "Maximum Quality is #%" is treated: PoB does not track quality on rings, so there is no value to apply yet. --- src/Modules/ModParser.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 52fa3b4316..6c1e092f24 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -3437,6 +3437,9 @@ local specialModList = { ["maximum quality is (%d+)%%"] = { -- Display only. For Breach Rings and Serle's Grit. }, + ["%+(%d+)%% to maximum quality"] = { + -- Display only. For Breach Rings and the Breachlord's prefix. + }, ["can have (%d+) additional instilled modifiers?"] = function(num) return { -- For Strugglescream. Handled in Item.lua } end,