Fix: Allow any tick (fixes #35)

This commit is contained in:
def 2014-09-12 12:13:46 +02:00
parent a36358190b
commit 3ea1bab617

View file

@ -332,6 +332,6 @@ class NetBool(NetIntRange):
def __init__(self, name):
NetIntRange.__init__(self,name,0,1)
class NetTick(NetIntRange):
class NetTick(NetIntAny):
def __init__(self, name):
NetIntRange.__init__(self,name,0,'max_int')
NetIntAny.__init__(self,name)