feat(ui): stub Script_GetGameTime

This commit is contained in:
fallenoak 2026-01-27 17:49:22 -06:00
parent 94731f53c3
commit 501935ffc2
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -14,7 +14,10 @@ int32_t Script_GetTime(lua_State* L) {
}
int32_t Script_GetGameTime(lua_State* L) {
WHOA_UNIMPLEMENTED(0);
// TODO real implementation
lua_pushnumber(L, 1.0);
lua_pushnumber(L, 15.0);
WHOA_UNIMPLEMENTED(2);
}
int32_t Script_ConsoleExec(lua_State* L) {