mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-21 11:21:11 +00:00
Add sstimer to LUA_PushGlobals.
This commit is contained in:
parent
bbe946ac1e
commit
e9f69b9c6a
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue