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:
Dennis Felsing 2024-01-30 06:39:21 +00:00 committed by GitHub
commit ed43b1495d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"),