Skip to content
Snippets Groups Projects
Commit 30f6ae6e authored by Sal's avatar Sal
Browse files

Add read access to shareEmblems (as well as a few other MAINCFG variables that weren't)

parent d7c5e16f
Branches
Tags
1 merge request!1756[SUGOI] Multiplayer emblems
......@@ -306,6 +306,18 @@ int LUA_PushGlobals(lua_State *L, const char *word)
lua_pushinteger(L, ammoremovaltics);
return 1;
// end timers
} else if (fastcmp(word,"use1upSound")) {
lua_pushinteger(L, use1upSound);
return 1;
} else if (fastcmp(word,"maxXtraLife")) {
lua_pushinteger(L, maxXtraLife);
return 1;
} else if (fastcmp(word,"useContinues")) {
lua_pushinteger(L, useContinues);
return 1;
} else if (fastcmp(word,"shareEmblems")) {
lua_pushinteger(L, shareEmblems);
return 1;
} else if (fastcmp(word,"gametype")) {
lua_pushinteger(L, gametype);
return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment