1
0
mirror of https://github.com/XLabsProject/iw4x-rawfiles.git synced 2023-08-02 15:02:11 +02:00

fix: make getPing work properly

This commit is contained in:
FutureRave 2023-05-03 17:24:44 +01:00
parent 7a44b445ca
commit ebcb8d9657
No known key found for this signature in database
GPG Key ID: 22F9079C86CFAB31

View File

@ -3866,7 +3866,7 @@ setPing( ping )
=============
///ScriptDocBegin
"Name: getPing()"
"Summary: Returns a fixed number. Added for backward compatibility"
"Summary: Returns the current ping of the client"
"Module: Utility"
"Example: self getPing();"
"SPMP: multiplayer"
@ -3875,7 +3875,7 @@ setPing( ping )
*/
getPing()
{
return 1;
return self.ping;
}
void()