Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit e7ccaa2

Browse files
committed
Breach ring default 50 quality
1 parent d2b768c commit e7ccaa2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Classes/ItemsTab.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,11 @@ holding Shift will put it in the second.]])
427427
function(index, value)
428428
self.displayItem.catalyst = index - 1
429429
if not self.displayItem.catalystQuality then
430-
self.displayItem.catalystQuality = 20
430+
if string.match(self.displayItem.name, "Breach Ring") then
431+
self.displayItem.catalystQuality = 50
432+
else
433+
self.displayItem.catalystQuality = 20
434+
end
431435
self.controls.displayItemCatalystQualityEdit:SetText(self.displayItem.catalystQuality)
432436
end
433437
if self.displayItem.crafted then

0 commit comments

Comments
 (0)