You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tekticles.lua lines 90-94, there is some broken code:
fori=1,MAX_CHANNEL_BUTTONSdolocalf=_G["ChannelButton"..i.."Text"]
f:SetFontObject(GameFontNormalSmallLeft)
-- function f:SetFont(...) error("Attempt to set font on ChannelButton"..i) endend
MAX_CHANNEL_BUTTONS can be replaced with GetNumDisplayChannels() to fix one error.
fori=1,GetNumDisplayChannels() dolocalf=_G["ChannelButton"..i.."Text"]
f:SetFontObject(GameFontNormalSmallLeft)
-- function f:SetFont(...) error("Attempt to set font on ChannelButton"..i) endend
However, I still get an error with f. Commenting-out this block of code resolves that and doesn't seem to remove any functionality.
The text was updated successfully, but these errors were encountered:
In
tekticles.lua
lines 90-94, there is some broken code:MAX_CHANNEL_BUTTONS
can be replaced withGetNumDisplayChannels()
to fix one error.However, I still get an error with
f
. Commenting-out this block of code resolves that and doesn't seem to remove any functionality.The text was updated successfully, but these errors were encountered: