fix: make getPing work properly

pull/3/head
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
1 changed files with 2 additions and 2 deletions

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()