mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fix typo involving the stringargs exposure.
This commit is contained in:
parent
ca694c8c43
commit
5e20e9e27e
1 changed files with 2 additions and 2 deletions
|
@ -819,12 +819,12 @@ static int mapthing_get(lua_State *L)
|
|||
number = mt->tag;
|
||||
else if(fastcmp(field,"args"))
|
||||
{
|
||||
LUA_PushUserdata(L, mt->args, META_THINGARGS);
|
||||
LUA_PushUserdata(L, mt->stringargs, META_THINGARGS);
|
||||
return 1;
|
||||
}
|
||||
else if(fastcmp(field,"stringargs"))
|
||||
{
|
||||
LUA_PushUserdata(L, mt->args, META_THINGSTRINGARGS);
|
||||
LUA_PushUserdata(L, mt->stringargs, META_THINGSTRINGARGS);
|
||||
return 1;
|
||||
}
|
||||
else if(fastcmp(field,"mobj")) {
|
||||
|
|
Loading…
Reference in a new issue