File Details
MyLittleCompanion v7.3
- R
- Jul 30, 2024
- 4.33 MB
- 517
- 11.0.2
- Retail
File Name
MyLittleCompanion_7.3.zip
Supported Versions
- 11.0.2
Update for 11.0 (TWW release):
In the MyLittleCompanion_Options.lua file
Replace lines 4 to 9 with
MLC_Options.panel = CreateFrame("Frame")
local background = MLC_Options.panel:CreateTexture()
background:SetAllPoints(MLC_Options.panel)
local category = Settings.RegisterCanvasLayoutCategory(MLC_Options.panel, "My Little Companion")
Settings.RegisterAddOnCategory(category)
Replace lines 74 to 81 with
MLC_SelectPony_Dropdown = CreateFrame("DropdownButton", "MLC_SelectPony_Dropdown", MLC_Options.panel, "UIPanelButtonTemplate");
MLC_SelectPony_Dropdown:SetPoint("TopLeft",MLC_Options.panel,"TopLeft",0,-50);
MLC_SelectPony_Dropdown:SetWidth(100);
MLC_SelectPony_Dropdown:SetHeight(25);
MLC_SelectPony_Dropdown:SetText("Select");
MLC_SelectPony_Dropdown:SetupMenu(function(dropdown, rootDescription)
rootDescription:CreateTitle("Select Pony")
for k, v in pairs(MLP_PonySelectItems) do
rootDescription:CreateButton(v.text, v.func)
end
end);
Replace lines 99 to 106 with
MLC_PonyStrata_Dropdown = CreateFrame("DropdownButton", "MLC_PonyStrata_Dropdown", MLC_Options.panel, "UIPanelButtonTemplate");
MLC_PonyStrata_Dropdown:SetPoint("TopLeft",MLC_Options.panel,"TopLeft",140,-50);
MLC_PonyStrata_Dropdown:SetWidth(100);
MLC_PonyStrata_Dropdown:SetHeight(25);
MLC_PonyStrata_Dropdown:SetText("Strata");
MLC_PonyStrata_Dropdown:SetupMenu(function(dropdown, rootDescription)
rootDescription:CreateTitle("Select Strata")
for k, v in pairs(MLC_StrataList) do
rootDescription:CreateButton(v.text, v.func)
end
end);

