[CSM] Correct the log destination of print() (#5784)
authorSmallJoker <SmallJoker@users.noreply.github.com>
Sat, 20 May 2017 14:46:12 +0000 (16:46 +0200)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Sat, 20 May 2017 14:46:12 +0000 (16:46 +0200)
src/script/lua_api/l_client.cpp
src/script/lua_api/l_client.h

index 7f89a4d5dfa41c99861bc8b8325fb244cc7a0f05..22045e06db08663a5d8c73bb64ea1e7f553056d9 100644 (file)
@@ -63,6 +63,15 @@ int ModApiClient::l_set_last_run_mod(lua_State *L)
        return 1;
 }
 
+// print(text)
+int ModApiClient::l_print(lua_State *L)
+{
+       NO_MAP_LOCK_REQUIRED;
+       std::string text = luaL_checkstring(L, 1);
+       rawstream << text << std::endl;
+       return 0;
+}
+
 // display_chat_message(message)
 int ModApiClient::l_display_chat_message(lua_State *L)
 {
@@ -261,6 +270,7 @@ int ModApiClient::l_take_screenshot(lua_State *L)
 void ModApiClient::Initialize(lua_State *L, int top)
 {
        API_FCT(get_current_modname);
+       API_FCT(print);
        API_FCT(display_chat_message);
        API_FCT(get_player_names);
        API_FCT(set_last_run_mod);
index a36d7e51c51f655c3cc3798f885d85ca116951c4..2267a4c9dcad32407cb77cf0829591805c78f20f 100644 (file)
@@ -29,6 +29,9 @@ private:
        // get_current_modname()
        static int l_get_current_modname(lua_State *L);
 
+       // print(text)
+       static int l_print(lua_State *L);
+
        // display_chat_message(message)
        static int l_display_chat_message(lua_State *L);