mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Ok fiiineee, I'll support 2.2
This commit is contained in:
parent
1dd754d139
commit
a59c03fefe
1 changed files with 13 additions and 0 deletions
|
|
@ -10810,6 +10810,12 @@ static inline int lib_getenum(lua_State *L)
|
||||||
lua_pushinteger(L, (lua_Integer)PF_FULLSTASIS);
|
lua_pushinteger(L, (lua_Integer)PF_FULLSTASIS);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
else if (fastcmp(p, "USEDOWN")) // Remove case when 2.3 nears release...
|
||||||
|
{
|
||||||
|
LUA_Deprecated(L, "PF_USEDOWN", "PF_SPINDOWN");
|
||||||
|
lua_pushinteger(L, (lua_Integer)PF_SPINDOWN);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
if (mathlib) return luaL_error(L, "playerflag '%s' could not be found.\n", word);
|
if (mathlib) return luaL_error(L, "playerflag '%s' could not be found.\n", word);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
@ -11076,6 +11082,13 @@ static inline int lib_getenum(lua_State *L)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (fastcmp(word, "BT_USE")) // Remove case when 2.3 nears release...
|
||||||
|
{
|
||||||
|
LUA_Deprecated(L, "BT_USE", "BT_SPIN");
|
||||||
|
lua_pushinteger(L, (lua_Integer)BT_SPIN);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; INT_CONST[i].n; i++)
|
for (i = 0; INT_CONST[i].n; i++)
|
||||||
if (fastcmp(word,INT_CONST[i].n)) {
|
if (fastcmp(word,INT_CONST[i].n)) {
|
||||||
lua_pushinteger(L, INT_CONST[i].v);
|
lua_pushinteger(L, INT_CONST[i].v);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue