s1lentq/ReGameDLL_CS

`IsInWorld()` should use `sv_maxvelocity` cvar value instead of hardcoded number

Nord1cWarr1or opened this issue · 3 comments

if (pev->velocity.x >= 2000.0 || pev->velocity.y >= 2000.0 || pev->velocity.z >= 2000.0)

Yes, and will allow us (if we increase "sv_maxvelocity") to fix grenades removed if we throw them faster then 2000 units/sec (case with speedhack plugin or super fast LongJump tuned).

Seems reasonable

Yes, and will allow us (if we increase "sv_maxvelocity") to fix grenades removed if we throw them faster then 2000 units/sec (case with speedhack plugin or super fast LongJump tuned).

It will not be a complete solution to the problem. See #889