View Single Post
06/24/21, 06:17 PM   #2
AlbinoPython
AddOn Author - Click to view addons
Join Date: Jun 2016
Posts: 24
You might try changing
Code:
EM:RegisterForUpdate(STT.name.."Update", STT.savedVars.updateInterval, STT.Countdown)
with this
Code:
EM:RegisterForUpdate(STT.name.."Update", STT.savedVars.updateInterval, function() STT.Countdown() end)
  Reply With Quote