diff options
-rw-r--r-- | engines/hdb/lua-script.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index e8c31c4338..66aa6dca40 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -206,7 +206,12 @@ static int cinePlayVoice(lua_State *L) { } static int cineUseEntity(lua_State *L) { - warning("STUB: CINE USE ENTITY"); + const char *string = lua_tostring(L, 1); + + g_hdb->_lua->checkParameters("cineUseEntity", 1); + + lua_pop(L, 1); + g_hdb->_ai->cineUse(string); return 0; } |