mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-19 20:12:01 +00:00
Expose sneaker typing stuff to Lua
This commit is contained in:
parent
6c790348b3
commit
60db6dac3e
1 changed files with 8 additions and 0 deletions
|
|
@ -498,6 +498,14 @@ static int player_get(lua_State *L)
|
|||
lua_pushinteger(L, plr->sneakertimer);
|
||||
else if (fastcmp(field,"numsneakers"))
|
||||
lua_pushinteger(L, plr->numsneakers);
|
||||
else if (fastcmp(field,"panelsneakertimer"))
|
||||
lua_pushinteger(L, plr->panelsneakertimer);
|
||||
else if (fastcmp(field,"numpanelsneakers"))
|
||||
lua_pushinteger(L, plr->numpanelsneakers);
|
||||
else if (fastcmp(field,"weaksneakertimer"))
|
||||
lua_pushinteger(L, plr->weaksneakertimer);
|
||||
else if (fastcmp(field,"numweaksneakers"))
|
||||
lua_pushinteger(L, plr->numweaksneakers);
|
||||
else if (fastcmp(field,"floorboost"))
|
||||
lua_pushinteger(L, plr->floorboost);
|
||||
else if (fastcmp(field,"growshrinktimer"))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue