From d5148f2532e4b6c38456f3d5f2fbfac75656fa1f Mon Sep 17 00:00:00 2001 From: gfgtdf Date: Thu, 14 Sep 2017 21:36:21 +0200 Subject: [PATCH] fix missing linebreak in erromessage --- src/scripting/lua_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/lua_common.cpp b/src/scripting/lua_common.cpp index 720701e39c93..ed591803fbbc 100644 --- a/src/scripting/lua_common.cpp +++ b/src/scripting/lua_common.cpp @@ -872,7 +872,7 @@ bool luaW_pushvariable(lua_State *L, variable_access_const& v) } catch (const invalid_variablename_exception&) { - WRN_LUA << v.get_error_message(); + WRN_LUA << v.get_error_message() << "\n"; return false; } }