File Details
V2.5.6
- R
- Apr 15, 2026
- 8.78 MB
- 2.8K
- 2.5.5+1
- Classic + 1
File Name
SharpiesGearJudge-V2.5.6.zip
Supported Versions
- 2.5.5
- 1.15.8
Sharpie's Gear Judge (Era Edition)
V2.5.6 (2026-04-15)
- Add "Clear Baseline" button to settings
Add a "Clear" button next to the Save button in MSC.InitSettingsView and reposition the status label to the right of it. The new button clears the saved gear and talent profiles for the current player key (SGJ_Settings.GearProfiles and SGJ_Settings.TalentProfiles), wipes MSC.EvaluationCache, and updates the status label. The Clear button is enabled only when a baseline is set. Also wipe the evaluation cache after saving a baseline so evaluations refresh immediately. - Handle hybrid spell power/healing split
Adjust parsing and evaluation to correctly handle hybrid items that list both healing and damage/spell power. Parse.lua: update two equip patterns to record the full spell power value as ITEM_MOD_SPELL_POWER_SHORT and only add the excess (healing minus spell power) to ITEM_MOD_SPELL_HEALING_DONE_SHORT when positive. Judge.lua: add derived-stat logic to convert existing spell power into healing (TBC logic) by adding ITEM_MOD_SPELL_POWER_SHORT into ITEM_MOD_SPELL_HEALING_DONE_SHORT. Evaluator.lua: ensure item scoring uses a modified stat table (copied via SafeCopy) that includes spell power added into healing before computing the item score. This prevents double-counting and yields correct scoring for hybrid heal/damage items.