mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix validation range of m_HookedPlayer in character snap items
This commit is contained in:
parent
5efa50ca28
commit
a121a53e26
|
@ -176,7 +176,7 @@ Objects = [
|
|||
NetIntRange("m_Direction", -1, 1),
|
||||
|
||||
NetIntRange("m_Jumped", 0, 3),
|
||||
NetIntRange("m_HookedPlayer", 0, 'MAX_CLIENTS-1'),
|
||||
NetIntRange("m_HookedPlayer", -1, 'MAX_CLIENTS-1'),
|
||||
NetIntRange("m_HookState", -1, 5),
|
||||
NetTick("m_HookTick"),
|
||||
|
||||
|
|
Loading…
Reference in a new issue