View Single Post
05-16-21, 07:00 AM   #5
Darkonode
A Murloc Raider
 
Darkonode's Avatar
Join Date: May 2021
Posts: 8
OMG and I LITERALLY noticed it straight after i posted T.T. Well, for your entertainment it was this line in the function I posted
Code:
tab.SetScript("OnClick", Tab_OnClick)
which should be
Code:
tab:SetScript("OnClick", Tab_OnClick)
Now it works! Almost... I'm still missing all the contents I wish to be shown on the tabs.

EDIT: I figured it out! I forgot a table insert from the SetTabs function, which made it return nil for the PopulateTabs function causing a lua error.

Last edited by Darkonode : 05-16-21 at 09:55 AM.
  Reply With Quote