You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
528 B

4 years ago
local addonName, Details222 = ...
4 years ago
-- @windowN: number a a window to open the player details breakdown
-- /run Details:OpenPlayerDetails(windowN)
function Details:OpenPlayerDetails(window)
window = window or 1
3 years ago
local instance = Details:GetInstance(window)
4 years ago
if (instance) then
local display, subDisplay = instance:GetDisplay()
if (display == 1) then
3 years ago
instance:AbreJanelaInfo (Details:GetPlayer(false, 1))
4 years ago
elseif (display == 2) then
3 years ago
instance:AbreJanelaInfo (Details:GetPlayer(false, 2))
4 years ago
end
end
end