debug check for weird timer crash

This commit is contained in:
Evil Factory
2022-06-29 20:22:33 -03:00
parent 3418132b90
commit 4a706c504a
2 changed files with 6 additions and 1 deletions
@@ -216,7 +216,7 @@ namespace Barotrauma
public static void PrintCsError(object message) => PrintErrorBase("[SV CS ERROR] ", message, "Null");
public static void PrintBothError(object message) => PrintErrorBase("[SV ERROR] ", message, "Null");
#else
private void PrintError(object message) => PrintErrorBase("[CL LUA ERROR] ", message, "nil");
public void PrintError(object message) => PrintErrorBase("[CL LUA ERROR] ", message, "nil");
public static void PrintCsError(object message) => PrintErrorBase("[CL CS ERROR] ", message, "Null");
public static void PrintBothError(object message) => PrintErrorBase("[CL ERROR] ", message, "Null");
#endif