From cde7779f51c8bb57151b0aefdefb909250c59eda Mon Sep 17 00:00:00 2001 From: Stephen Searles Date: Sun, 7 Jan 2018 17:42:49 -0500 Subject: [PATCH] bugfix, presumably --- idleshut.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idleshut.go b/idleshut.go index 316b0ae..178ad4e 100644 --- a/idleshut.go +++ b/idleshut.go @@ -116,7 +116,7 @@ func (p *Process) generation() uint { } func (p *Process) startTicker() { - if p.cfg.TickDuration == 0 || p.cfg.IdleTick == nil { + if p.cfg.TickDuration == 0 { return }