Break Timespan Skipping Seconds

I am having a problem using the Break Timespan node. Every few ticks, it will skip a second, and then sit for 2 seconds. So it will countdown 9…8…6…6…5. So it will skip 7 and rest on 6 for 2 seconds. So the time is technically passing correctly, but displaying the wrong seconds. If I bypass it with a print string before Break Timespan, it counts down correctly. So I know actual timer is working correctly, it is just having some sort of problem in the Break Timespan node.

Use GetTotalSeconds and round to the nearest integer.

BreakTimespan gets you the components of the time span. If your timer is 6.999 seconds, it will show 6 seconds, not 7 as you expected.

Ah, ok. That works now. Thanks