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.
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
| | | |
| 1 | 1 | | -- XPerl_Player_SetBuffTooltip |
| 2 | 2 | | function XPerl_Player_SetBuffTooltip(self) |
| 3 | 3 | | if (conf.tooltip.enableBuffs and XPerl_TooltipModiferPressed(true)) then |
| 4 | 4 | | if (not conf.tooltip.hideInCombat or not InCombatLockdown()) then |
| 5 | 5 | | GameTooltip:SetOwner(self, "ANCHOR_BOTTOMRIGHT") |
| 6 | | - | GameTooltip:SetUnitBuff(self.partyid, self:GetID()) |
| 6 | + | GameTooltip:SetUnitBuff("player", self:GetID()) |
| 7 | 7 | | end |
| 8 | 8 | | end |
| 9 | 9 | | end |
| 11 | 11 | | -- XPerl_Player_SetDeBuffTooltip |
| 12 | 12 | | function XPerl_Player_SetDeBuffTooltip(self) |
| 13 | 13 | | if (conf.tooltip.enableBuffs and XPerl_TooltipModiferPressed(true)) then |
| 14 | 14 | | if (not conf.tooltip.hideInCombat or not InCombatLockdown()) then |
| 15 | 15 | | GameTooltip:SetOwner(self, "ANCHOR_BOTTOMRIGHT") |
| 16 | | - | GameTooltip:SetUnitDebuff(self.partyid, self:GetID()) |
| 16 | + | GameTooltip:SetUnitBuff("player", self:GetID()) |
| 17 | 17 | | end |
| 18 | 18 | | end |
| 19 | 19 | | end |