Skip to content
Snippets Groups Projects
Commit 38c665fa authored by Nev3r's avatar Nev3r
Browse files

Remove old taglist access from Lua.

parent 7c11091c
No related branches found
No related tags found
1 merge request!1097UDMF: Multitag support
...@@ -94,8 +94,6 @@ enum line_e { ...@@ -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[] = { ...@@ -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) ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment