mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix: Allow any tick (fixes #35)
This commit is contained in:
parent
a36358190b
commit
3ea1bab617
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue