Remove BT_USE and PF_USEDOWN warning

someone entertained the idea of maybe removing it, so might as well put this merge request up to see if people want it
This commit is contained in:
GoldenTails 2020-09-06 00:30:05 -05:00
parent c7c9ae3847
commit 8ae5f3030f
1 changed files with 0 additions and 2 deletions

View File

@ -10844,7 +10844,6 @@ static inline int lib_getenum(lua_State *L)
}
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;
}
@ -11116,7 +11115,6 @@ static inline int lib_getenum(lua_State *L)
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;
}