pastebin - collaborative debugging

pastebin is a collaborative debugging tool allowing you to share and modify code snippets while chatting on IRC, IM or a message board.

This site is developed to XHTML and CSS2 W3C standards. If you see this paragraph, your browser does not support those standards and you need to upgrade. Visit WaSP for a variety of options.

binarymuse private pastebin - collaborative debugging tool What's a private pastebin?


Difference between
modified post f76a70239 by Brandon T on Fri 31 Jul 15:07 and
original post f225b60c5 by Brandon T on Fri 31 Jul 15:07
Show old version | new version | both versions

    
11
-- XPerl_Player_SetBuffTooltip
22
function XPerl_Player_SetBuffTooltip(self)
33
	if (conf.tooltip.enableBuffs and XPerl_TooltipModiferPressed(true)) then
44
		if (not conf.tooltip.hideInCombat or not InCombatLockdown()) then
55
			GameTooltip:SetOwner(self, "ANCHOR_BOTTOMRIGHT")
6-
			GameTooltip:SetUnitBuff(self.partyid, self:GetID())
6+
			GameTooltip:SetUnitBuff("player", self:GetID())
77
		end
88
	end
99
end
1111
-- XPerl_Player_SetDeBuffTooltip
1212
function XPerl_Player_SetDeBuffTooltip(self)
1313
	if (conf.tooltip.enableBuffs and XPerl_TooltipModiferPressed(true)) then
1414
		if (not conf.tooltip.hideInCombat or not InCombatLockdown()) then
1515
			GameTooltip:SetOwner(self, "ANCHOR_BOTTOMRIGHT")
16-
			GameTooltip:SetUnitDebuff(self.partyid, self:GetID())
16+
			GameTooltip:SetUnitBuff("player", self:GetID())
1717
		end
1818
	end
1919
end

Syntax highlighting:

To highlight particular lines, prefix each line with @@


Remember me so that I can delete my post