Skip to content
Snippets Groups Projects
Commit 409cba67 authored by Golden's avatar Golden
Browse files

metalrecording

parent 090e5384
No related branches found
No related tags found
1 merge request!1536Expose `metalrecording` global to Lua.
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment