Hi,
I created an issue about this on github on Nov 14 2022 and even wrote to Vlad on 21 Nov 2022 and still got no response so after more than a year of using custom timer lib: can we get a fix for that built it?
I fixed it with adding this loop inside “if not inRunlist then”:
local pausedTimers = timer._pausedTimers
for i,v in ipairs( pausedTimers ) do
if v == entry then
entry._removed = true
tRemove( pausedTimers, i )
break
end
end