File Details
RollAway_2.6.3.zip
- R
- Jul 1, 2026
- 99.85 KB
- 510
- 12.0.7
- Retail
File Name
RollAway_2.6.3.zip
Supported Versions
- 12.0.7
2.6.3
Changes
- S2/S3 season tabs (Dungeons & Raids) now show/hide immediately when toggling debug mode in Options — previously required a
/reloadsince tab visibility was only evaluated once at login.
Fixes
- Fixed Developer section (debug checkbox) and, by extension, the S2/S3 season tabs becoming inaccessible for dev/tester characters. Root cause: the accented name
"Thalîndra"inDEV_CHARSis sensitive to the local file's save encoding — if saved as anything other than UTF-8, theîbyte sequence in the source no longer matches the UTF-8 bytesUnitName()returns at runtime, breaking the lookup regardless of client locale. The key is now written as an explicit byte escape ("Thal\195\174ndra"), which is immune to file-encoding differences. - Fixed
ADDON_ACTION_BLOCKED/ "tried to call the protected function 'SetEntryTitle()'" error triggered by the auto-apply playstyle feature. Setting the playstyle dropdown programmatically routed through Blizzard's protected title auto-fill (LFGListEntryCreation_SetTitleFromActivityInfo→SetEntryTitle), which gets taint-blocked when called outside a hardware event.LFGQuickCreate.lua'sApplyDefaultPlaystylenow no-ops that one Blizzard function only for the duration of its own call, then restores it — real user dropdown interaction is unaffected.