mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix typo involving the stringargs exposure.
This commit is contained in:
parent
1dae8df2f5
commit
e05d19b7b9
1 changed files with 2 additions and 2 deletions
|
|
@ -819,12 +819,12 @@ static int mapthing_get(lua_State *L)
|
||||||
number = mt->tag;
|
number = mt->tag;
|
||||||
else if(fastcmp(field,"args"))
|
else if(fastcmp(field,"args"))
|
||||||
{
|
{
|
||||||
LUA_PushUserdata(L, mt->args, META_THINGARGS);
|
LUA_PushUserdata(L, mt->stringargs, META_THINGARGS);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if(fastcmp(field,"stringargs"))
|
else if(fastcmp(field,"stringargs"))
|
||||||
{
|
{
|
||||||
LUA_PushUserdata(L, mt->args, META_THINGSTRINGARGS);
|
LUA_PushUserdata(L, mt->stringargs, META_THINGSTRINGARGS);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if(fastcmp(field,"mobj")) {
|
else if(fastcmp(field,"mobj")) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue