Skip to content
Snippets Groups Projects
Commit af141667 authored by James R.'s avatar James R.
Browse files

Merge branch 'stoppedclock-exposed' into 'next'

Expose stoppedclock to Lua

See merge request !771
parents 11a1ce6d 021ca920
No related branches found
No related tags found
3 merge requests!848shaders master merge and mipmap fix,!809Fix buffer overrun with players that have no associated node,!771Expose stoppedclock to Lua
...@@ -102,6 +102,9 @@ int LUA_PushGlobals(lua_State *L, const char *word) ...@@ -102,6 +102,9 @@ int LUA_PushGlobals(lua_State *L, const char *word)
} else if (fastcmp(word,"circuitmap")) { } else if (fastcmp(word,"circuitmap")) {
lua_pushboolean(L, circuitmap); lua_pushboolean(L, circuitmap);
return 1; return 1;
} else if (fastcmp(word,"stoppedclock")) {
lua_pushboolean(L, stoppedclock);
return 1;
} else if (fastcmp(word,"netgame")) { } else if (fastcmp(word,"netgame")) {
lua_pushboolean(L, netgame); lua_pushboolean(L, netgame);
return 1; 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