From af2f02552f1999b9b491fc44386be5c1ea8a8882 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Sat, 20 May 2017 16:46:12 +0200 Subject: [CSM] Correct the log destination of print() (#5784) --- src/script/lua_api/l_client.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/script/lua_api/l_client.cpp') diff --git a/src/script/lua_api/l_client.cpp b/src/script/lua_api/l_client.cpp index 7f89a4d5d..22045e06d 100644 --- a/src/script/lua_api/l_client.cpp +++ b/src/script/lua_api/l_client.cpp @@ -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); -- cgit v1.2.3