mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'fixlastpickupdistance' into 'master'
Fixed copy and paste error for "lastpickupdistance" See merge request KartKrew/RingRacers!44
This commit is contained in:
commit
7441dae7d3
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