Merge branch 'master' into hotfix/issue5766_speedrate

This commit is contained in:
aleos 2022-05-17 16:12:08 -04:00
commit 3c18adb5d2

View File

@ -504,7 +504,7 @@ int distance_client(int dx, int dy)
//Bonus factor used by client //Bonus factor used by client
//This affects even horizontal/vertical lines so they are one cell longer than expected //This affects even horizontal/vertical lines so they are one cell longer than expected
temp_dist -= 0.0625; temp_dist -= 0.1;
if(temp_dist < 0) temp_dist = 0; if(temp_dist < 0) temp_dist = 0;