CamwynMember Frequent Poster
Joined: 10 Jul 2007 Posts: 218
|
re: 3.1 PTR mod fixes
by Camwyn on Tue Mar 17, 2009 11:07 am
Xperl right click menu fix: Open Xperl.lua, search for 'not anchor' and change the line to this:
if (not anchor or anchor == "menu") then
Xperl big buffs: A bit more involved. In Xperl.lua, there is a place at line 2739 (in my copy) where 'isMine' is set by calling Xperl_UnitBuff. To fix the problem, replace 'isMine' in this line with 'caster', then add another line below it to properly set 'isMine'.
local name, rank, buff, count, _, duration, endTime, caster, isStealable = XPerl_UnitBuff(partyid, buffnum, castableOnly and "RAID")
local isMine = caster == "player";
This same basic methodology works in any other mods that try and detect which buffs are yours, such as DoTimer.
If you use Chatter, simply type '/chatter' to open the config window, scroll down to 'URL Copy', and disable it. Everything else should work fine.
|