mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 03:12:38 +00:00
Merge branch 'metalrecording' into 'next'
Expose `metalrecording` global to Lua. See merge request STJr/SRB2!1536
This commit is contained in:
commit
2bc707305b
1 changed files with 3 additions and 0 deletions
|
@ -184,6 +184,9 @@ int LUA_PushGlobals(lua_State *L, const char *word)
|
|||
} else if (fastcmp(word,"modeattacking")) {
|
||||
lua_pushboolean(L, modeattacking);
|
||||
return 1;
|
||||
} else if (fastcmp(word,"metalrecording")) {
|
||||
lua_pushboolean(L, metalrecording);
|
||||
return 1;
|
||||
} else if (fastcmp(word,"splitscreen")) {
|
||||
lua_pushboolean(L, splitscreen);
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue