Core/Commands: Fixed a error with go creature command.

This commit is contained in:
hondacrx
2018-03-12 10:02:29 -04:00
parent a2fafd2920
commit ef7423fa12
2 changed files with 13 additions and 20 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ public class Log
if (!ShouldLog(LogFilter.Server, LogLevel.Fatal))
return;
outMessage(LogFilter.Server, LogLevel.Fatal, "MemberName: {0} ExceptionMessage: {1}", memberName, ex.Message);
outMessage(LogFilter.Server, LogLevel.Fatal, "CallingMember: {0} ExceptionMessage: {1}", memberName, ex.Message);
}
public static void outFatal(LogFilter type, string text, params object[] args)