mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix "aizdriftstraft" typo in lua_playerlib.c
This commit is contained in:
parent
dd45f3cd61
commit
2b5a8259f7
1 changed files with 2 additions and 2 deletions
|
|
@ -296,7 +296,7 @@ static int player_get(lua_State *L)
|
|||
lua_pushinteger(L, plr->gateSound);
|
||||
else if (fastcmp(field,"startboost"))
|
||||
lua_pushinteger(L, plr->startboost);
|
||||
else if (fastcmp(field,"aizdriftstraft"))
|
||||
else if (fastcmp(field,"aizdriftstrat"))
|
||||
lua_pushinteger(L, plr->aizdriftstrat);
|
||||
else if (fastcmp(field,"aizdriftextend"))
|
||||
lua_pushinteger(L, plr->aizdriftextend);
|
||||
|
|
@ -860,7 +860,7 @@ static int player_set(lua_State *L)
|
|||
plr->gateSound = luaL_checkinteger(L, 3);
|
||||
else if (fastcmp(field,"startboost"))
|
||||
plr->startboost = luaL_checkinteger(L, 3);
|
||||
else if (fastcmp(field,"aizdriftstraft"))
|
||||
else if (fastcmp(field,"aizdriftstrat"))
|
||||
plr->aizdriftstrat = luaL_checkinteger(L, 3);
|
||||
else if (fastcmp(field,"aizdrifttilt"))
|
||||
plr->aizdrifttilt = luaL_checkinteger(L, 3);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue