mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-03 23:42:07 +00:00
Fixed copy and paste error for "lastpickupdistance"
This commit is contained in:
parent
161d375532
commit
c8d57c9953
1 changed files with 1 additions and 1 deletions
|
|
@ -795,7 +795,7 @@ static int player_set(lua_State *L)
|
||||||
else if (fastcmp(field,"distancetofinishprev"))
|
else if (fastcmp(field,"distancetofinishprev"))
|
||||||
return NOSET;
|
return NOSET;
|
||||||
else if (fastcmp(field,"lastpickupdistance"))
|
else if (fastcmp(field,"lastpickupdistance"))
|
||||||
plr->airtime = luaL_checkinteger(L, 3);
|
plr->lastpickupdistance = luaL_checkinteger(L, 3);
|
||||||
else if (fastcmp(field,"airtime"))
|
else if (fastcmp(field,"airtime"))
|
||||||
plr->airtime = luaL_checkinteger(L, 3);
|
plr->airtime = luaL_checkinteger(L, 3);
|
||||||
else if (fastcmp(field,"lastairtime"))
|
else if (fastcmp(field,"lastairtime"))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue