From f738c19757d6c153ab2658804001b34db24683bc Mon Sep 17 00:00:00 2001 From: fgenesis Date: Fri, 10 Feb 2012 01:22:21 +0100 Subject: [PATCH] ScriptInterface: one more errorLog that should not be there --- Aquaria/ScriptInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aquaria/ScriptInterface.cpp b/Aquaria/ScriptInterface.cpp index c288ade..e091731 100644 --- a/Aquaria/ScriptInterface.cpp +++ b/Aquaria/ScriptInterface.cpp @@ -673,7 +673,7 @@ luaFunc(indexWarnInstance) os << "WARNING: " << luaFormatStackInfo(L) << ": script tried to get/call undefined instance variable " << lua_tostring(L, -2); - errorLog(os.str()); + scriptError(os.str()); } lua_remove(L, -2);