mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-16 17:57:17 +00:00
Merge pull request #899 from Nairdaa/patch-2
scroll perf ratio fix - removed the debug lines
This commit is contained in:
commit
55729fefb8
@ -3058,11 +3058,11 @@ public Action OnPlayerRunCmd(int client, int &buttons, int &impulse, float vel[3
|
|||||||
{
|
{
|
||||||
int iDifference = (gI_TickCount - gA_Timers[client].iLandingTick);
|
int iDifference = (gI_TickCount - gA_Timers[client].iLandingTick);
|
||||||
|
|
||||||
if(1 <= iDifference <= 8)
|
if(0 <= iDifference <= 10)
|
||||||
{
|
{
|
||||||
gA_Timers[client].iMeasuredJumps++;
|
gA_Timers[client].iMeasuredJumps++;
|
||||||
|
|
||||||
if(iDifference == 1)
|
if(iDifference <= 1)
|
||||||
{
|
{
|
||||||
gA_Timers[client].iPerfectJumps++;
|
gA_Timers[client].iPerfectJumps++;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user