mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Merge pull request #7878 from ChillerDragon/pr_allow_hookedplayer_minus_one
Fix 0.7 validation range of m_HookedPlayer in character snap items
This commit is contained in:
commit
ed43b1495d
|
@ -152,7 +152,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