Add sstimer to LUA_PushGlobals.

This commit is contained in:
Jaime Passos 2019-12-23 19:08:57 -03:00
parent bbe946ac1e
commit e9f69b9c6a

View file

@ -228,6 +228,9 @@ int LUA_PushGlobals(lua_State *L, const char *word)
} else if (fastcmp(word,"leveltime")) {
lua_pushinteger(L, leveltime);
return 1;
} else if (fastcmp(word,"sstimer")) {
lua_pushinteger(L, sstimer);
return 1;
} else if (fastcmp(word,"curWeather")) {
lua_pushinteger(L, curWeather);
return 1;