diff --git a/src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue b/src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue index 714bc40d0..b13e4a171 100644 --- a/src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue +++ b/src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue @@ -19,11 +19,11 @@ export default { }, autoCleanTooltip() { return `${this.removeString} Glyphs that are worse in every way than - enough other Glyphs${this.hasPerkShop ? " (ignores Music Glyphs)" : ""}`; + enough other Glyphs${this.hasPerkShop ? " (ignores customized Glyphs)" : ""}`; }, harshAutoCleanTooltip() { return `${this.removeString} Glyphs that are worse in every way than - ANY other Glyph${this.hasPerkShop ? " (includes Music Glyphs)" : ""}`; + ANY other Glyph${this.hasPerkShop ? " (includes customized Glyphs)" : ""}`; }, deleteRejectedTooltip() { const negativeWarning = AutoGlyphProcessor.hasNegativeEffectScore() diff --git a/src/core/glyphs/glyph-core.js b/src/core/glyphs/glyph-core.js index 2a7df36d4..53764640f 100644 --- a/src/core/glyphs/glyph-core.js +++ b/src/core/glyphs/glyph-core.js @@ -572,7 +572,7 @@ export const Glyphs = { const glyph = (inventoryCopy ?? this.inventory)[inventoryIndex]; // Never clean companion, and only clean cursed if we choose to sacrifice all if (glyph === null || glyph.type === "companion" || (glyph.type === "cursed" && threshold !== 0)) continue; - // Don't auto-clean custom glyphs (eg. music glyphs) unless it's harsh or delete all + // Don't auto-clean individually customized glyphs unless it's harsh or delete all const isCustomGlyph = glyph.color !== undefined || glyph.symbol !== undefined; if (isCustomGlyph && !isHarsh) continue; // If the threshold for better glyphs needed is zero, the glyph is definitely getting deleted