Remove old taglist access from Lua.

This commit is contained in:
Nev3r 2020-04-17 23:31:08 +02:00
parent 7c11091c40
commit 38c665fa79

View file

@ -94,8 +94,6 @@ enum line_e {
line_slopetype, line_slopetype,
line_frontsector, line_frontsector,
line_backsector, line_backsector,
line_firsttag,
line_nexttag,
line_text, line_text,
line_callcount line_callcount
}; };
@ -118,8 +116,6 @@ static const char *const line_opt[] = {
"slopetype", "slopetype",
"frontsector", "frontsector",
"backsector", "backsector",
"firsttag",
"nexttag",
"text", "text",
"callcount", "callcount",
NULL}; NULL};
@ -815,12 +811,6 @@ static int line_get(lua_State *L)
case line_backsector: case line_backsector:
LUA_PushUserdata(L, line->backsector, META_SECTOR); LUA_PushUserdata(L, line->backsector, META_SECTOR);
return 1; return 1;
case line_firsttag:
lua_pushinteger(L, line->firsttag);
return 1;
case line_nexttag:
lua_pushinteger(L, line->nexttag);
return 1;
case line_text: case line_text:
lua_pushstring(L, line->text); lua_pushstring(L, line->text);
return 1; return 1;