diff --git a/src/lua_script.c b/src/lua_script.c index b62fa675e2e7193da3a688d89d2f1cf377298a51..f98d75a562679238defecdecfd8a1f2ebc3d70e2 100644 --- a/src/lua_script.c +++ b/src/lua_script.c @@ -412,6 +412,15 @@ int LUA_PushGlobals(lua_State *L, const char *word) } else if (fastcmp(word, "token")) { lua_pushinteger(L, token); return 1; + } else if (fastcmp(word, "emblems")) { + lua_pushinteger(L, M_CountEmblems(clientGamedata)); + return 1; + } else if (fastcmp(word, "numemblems")) { + lua_pushinteger(L, numemblems); + return 1; + } else if (fastcmp(word, "numextraemblems")) { + lua_pushinteger(L, numextraemblems); + return 1; } else if (fastcmp(word, "gamestate")) { lua_pushinteger(L, gamestate); return 1;