Skip to content

Commit

Permalink
Update lua_kernel_base.cpp
Browse files Browse the repository at this point in the history
Add spaces in between outputs of the lua print function when used with multiple arguments
  • Loading branch information
cbeck88 committed Apr 28, 2015
1 parent 047acf4 commit 22ca164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/lua_kernel_base.cpp
Expand Up @@ -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";
}

Expand Down

0 comments on commit 22ca164

Please sign in to comment.