Aurora

Aurora

352k Downloads

[Bug]

xGriinch opened this issue ยท 3 comments

commented

Is there an existing issue for this?

  • I have searched the existing issues

Game Client

Retail

Current Behavior

Message: .../AddOns/Aurora/Skin/Interface/FrameXML/PetStable.lua:88: attempt to index field 'PetStableModel' (a nil value)
Time: Fri Sep 22 02:46:10 2023
Count: 1
Stack: .../AddOns/Aurora/Skin/Interface/FrameXML/PetStable.lua:88: attempt to index field 'PetStableModel' (a nil value)
[string "@Interface/AddOns/Aurora/Skin/Interface/FrameXML/PetStable.lua"]:88: in function `?'
[string "@Interface/AddOns/Aurora/Skin/init.lua"]:165: in function <Interface/AddOns/Aurora/Skin/init.lua:149>

Locals: PetStableFrame = PetStableFrame {
0 =
LeftInset = PetStableLeftInset {
}
page = 1
PetStableModelScene = PetStableModelScene {
}
SetBorder = defined =[C]:-1
layoutType = "PortraitFrameTemplate"
BottomInset = PetStableBottomInset {
}
SetPortraitShown = defined @Interface/SharedXML/PortraitFrame.lua:102
SetFrameLevelsFromBaseLevel = defined @Interface/SharedXML/PortraitFrame.lua:120
SetPortraitToBag = defined @Interface/SharedXML/PortraitFrame.lua:80
SetPortraitAtlasRaw = defined @Interface/SharedXML/PortraitFrame.lua:88
SetPortraitToUnit = defined @Interface/SharedXML/PortraitFrame.lua:76
Inset = PetStableFrameInset {
}
SetPortraitTexCoord = defined @Interface/SharedXML/PortraitFrame.lua:98
PortraitContainer = Frame {
}
SetPortraitTextureRaw = defined @Interface/SharedXML/PortraitFrame.lua:84
SetTitleFormatted = defined @Interface/SharedXML/PortraitFrame.lua:40
SetPortraitToClassIcon = defined @Interface/SharedXML/PortraitFrame.lua:92
TopTileStreaks = Texture {
}
Bg = PetStableFrameBg {
}
TitleContainer = Frame {
}
SetPortraitToAsset = defined @Interface/SharedXML/PortraitFrame.lua:72
SetTitleMaxLinesAndHeight = defined @Interface/SharedXML/PortraitFrame.lua:49
SetTitleColor = defined @Interface/SharedXML/PortraitFrame.lua:32
CloseButton = PetStableFrameCloseButton {
}
NineSlice = Frame {
}
GetTitleText = defined @Interface/SharedXML/PortraitFrame.lua:28
SetTitleOffsets = defined @Interface/SharedXML/PortraitFrame.lua:54
GetPortrait = defined @Interface/SharedXML/PortraitFrame.lua:63
SetTitle = defined @Interface/SharedXML/PortraitFrame.lua:36
SetPortraitTextureSizeAndOffset = defined @Interface/SharedXML/PortraitFrame.lua:106
}
(*temporary) = nil
(*temporary) = nil
(*temporary) =
(*temporary) = Frame {
BottomLeftCorner = Texture {
}
OnBackdropLoaded = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:175
GetBackdropColor = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:285
SetBackdropOptions = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:364
SetBackdropBorderColor = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:289
RightEdge = Texture {
}
GetBackdropTexture = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:333
BottomEdge = Texture {
}
SetBackdrop = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:246
GetCenterColor = defined @Interface/SharedXML/NineSlice.lua:285
GetBackdropBorderColor = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:305
GetBackdrop = defined @Interface/SharedXML/Backdrop.lua:347
SetBackdropGradient = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:311
SetBorderBlendMode = defined @Interface/SharedXML/Backdrop.lua:266
SetBackdropOption = defined @Interface/AddOns/Aurora/Skin/backdrop.lua:342
SetCenterColor = defined @Interface/SharedXML/NineSlice.lua:278
backdropInfo =

{
}
_auroraNineSlice = true
OnBackdropSizeChanged = defined @Interface/SharedXML/Backdrop.lua:182
TopLeftCorner = Texture {
}
SetVertexColor = defined @Interface/SharedXML/NineSlice.lua:315
SetBorderColor = defined @Interface/SharedXML/NineSlice.lua:292
SetupTextureC

Expected Behavior

No response

Steps To Reproduce

Its basically happening everytime I log into the game. I don't know if one of of my other addons is interfering with it or what it is.

Additional context

Addons being used:
BtWQuests
Immersion
Bagnon
Hekili

commented

As a work around you can wrap the PetStableModel with... this is not a proper fix.. but it will atleast let you get to the next part.

    if not PetStableModel == nil then
        _G.PetStableModel:SetPoint("TOPLEFT", PetStableFrame.Inset)
        _G.PetStableModel:SetPoint("BOTTOMRIGHT", PetStableFrame.Inset)
        _G.PetStableModelRotateLeftButton:Hide()
        _G.PetStableModelRotateRightButton:Hide()
        _G.PetStableModelShadow:Hide()     
    end

commented

I'm having the same issue as xGriinch, even with all other addons disabled

commented

This one we have a proper fix for. Will be merged to main repo soon.