mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-26 22:31:10 +00:00
Remove old taglist access from Lua.
This commit is contained in:
parent
7c11091c40
commit
38c665fa79
1 changed files with 0 additions and 10 deletions
|
@ -94,8 +94,6 @@ enum line_e {
|
|||
line_slopetype,
|
||||
line_frontsector,
|
||||
line_backsector,
|
||||
line_firsttag,
|
||||
line_nexttag,
|
||||
line_text,
|
||||
line_callcount
|
||||
};
|
||||
|
@ -118,8 +116,6 @@ static const char *const line_opt[] = {
|
|||
"slopetype",
|
||||
"frontsector",
|
||||
"backsector",
|
||||
"firsttag",
|
||||
"nexttag",
|
||||
"text",
|
||||
"callcount",
|
||||
NULL};
|
||||
|
@ -815,12 +811,6 @@ static int line_get(lua_State *L)
|
|||
case line_backsector:
|
||||
LUA_PushUserdata(L, line->backsector, META_SECTOR);
|
||||
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:
|
||||
lua_pushstring(L, line->text);
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue