Skip to content

Commit

Permalink
fixed housing calls for drop 6
Browse files Browse the repository at this point in the history
  • Loading branch information
coding-red-panda committed Sep 29, 2015
1 parent 3667cde commit 4ff1bde
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.settings/
/.buildpath
/.project
7 changes: 4 additions & 3 deletions Generalist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,9 +813,10 @@ function Generalist:GetCharDecor()

-- Temp decor table.
local theDecor = {}
local libResidence = HousingLib.GetResidence()

-- Get placed decor.
local tDecor = HousingLib.GetPlacedDecorList()
local tDecor = libResidence:GetPlacedDecorList()

-- Loop through it.
for _,tItem in ipairs(tDecor) do
Expand All @@ -832,7 +833,7 @@ function Generalist:GetCharDecor()
end

-- Get crated decor.
tDecor = HousingLib.GetDecorCrateList()
tDecor = libResidence:GetDecorCrateList()

-- Loop through it.
for _,tItem in ipairs(tDecor) do
Expand Down Expand Up @@ -1628,7 +1629,7 @@ end
---------------------------------------------------------------------------------------------------

function Generalist:ItemToolTip(wndControl, item, bStuff, nCount)
local this = Apollo.GetAddon("Generalist")
local this = Apollo.GetAddon("GeneralistEx")

wndControl:SetTooltipDoc(nil)
local wndTooltip, wndTooltipComp = origItemToolTipForm(self,wndControl,item,bStuff,nCount)
Expand Down
2 changes: 1 addition & 1 deletion toc.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Addon Author="sk4p" APIVersion="10" Name="Generalist" Description="A handy tool for managing alternate characters." Version="1.0.1">
<Addon Author="Olivar Nax" APIVersion="11" Name="GeneralistEx" Description="A handy tool for managing alternate characters." Version="2.0.0">
<Script Name="Generalist.lua"/>
<Form Name="Generalist.xml"/>
</Addon>

0 comments on commit 4ff1bde

Please sign in to comment.