Skip to content
Snippets Groups Projects
Commit b36ca89e authored by Jisk's avatar Jisk :cat: Committed by Sal
Browse files

Port player.ping from SRB2Kart

parent f13fddaf
Branches
Tags
No related merge requests found
......@@ -222,6 +222,7 @@ enum player_e
player_blocked,
player_jointime,
player_quittime,
player_ping,
#ifdef HWRENDER
player_fovadd,
#endif
......@@ -368,6 +369,7 @@ static const char *const player_opt[] = {
"blocked",
"jointime",
"quittime",
"ping",
#ifdef HWRENDER
"fovadd",
#endif
......@@ -819,6 +821,9 @@ static int player_get(lua_State *L)
case player_quittime:
lua_pushinteger(L, plr->quittime);
break;
case player_ping:
lua_pushinteger(L, playerpingtable[plr - players]);
break;
#ifdef HWRENDER
case player_fovadd:
lua_pushfixed(L, plr->fovadd);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment