From 22ca164e450a929bb00d806d54a65846138424e1 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Tue, 28 Apr 2015 10:42:26 -0400 Subject: [PATCH] Update lua_kernel_base.cpp Add spaces in between outputs of the lua print function when used with multiple arguments --- src/scripting/lua_kernel_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/lua_kernel_base.cpp b/src/scripting/lua_kernel_base.cpp index c01f8bbf66ef..a3d085c80d4d 100644 --- a/src/scripting/lua_kernel_base.cpp +++ b/src/scripting/lua_kernel_base.cpp @@ -94,7 +94,7 @@ int lua_kernel_base::intf_print(lua_State* L) if (!str) { str = ""; } - cmd_log_ << str; + cmd_log_ << str << ' '; DBG_LUA << "'" << str << "'\n"; }