diff --git a/Source/Math.h b/Source/Math.h index 9ffcd714..68084a02 100755 --- a/Source/Math.h +++ b/Source/Math.h @@ -79,7 +79,16 @@ void runplayerphysics(void) Damage_Apply( self, world, fFallDamage, self.origin, FALSE ); } #endif - + +#ifdef SSQC + if ( cvar( "pm_bunnyspeedcap") == 0 ) { + return; + } +#else + if ( serverkey( "pm_bunnyspeedcap") == 0 ) { + return; + } +#endif if ( fallvel > 245 ) { self.velocity *= 0.25; } diff --git a/freecs/csprogs.dat b/freecs/csprogs.dat index 5f66dea5..5e9e55c3 100755 Binary files a/freecs/csprogs.dat and b/freecs/csprogs.dat differ diff --git a/freecs/progs.dat b/freecs/progs.dat index 0402c8a9..048d5632 100755 Binary files a/freecs/progs.dat and b/freecs/progs.dat differ