Replace '' (two single quotes) with \" (double quote)
We must correct post-traumatic Blitz disorder
This commit is contained in:
@@ -443,14 +443,14 @@ namespace Barotrauma
|
||||
|
||||
if (!System.IO.File.Exists(file))
|
||||
{
|
||||
DebugConsole.ThrowError("Spawning a character failed - file ''"+file+"'' not found!");
|
||||
DebugConsole.ThrowError("Spawning a character failed - file \""+file+"\" not found!");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
#else
|
||||
if (!System.IO.File.Exists(file))
|
||||
{
|
||||
DebugConsole.ThrowError("Spawning a character failed - file ''"+file+"'' not found!");
|
||||
DebugConsole.ThrowError("Spawning a character failed - file \""+file+"\" not found!");
|
||||
return null;
|
||||
}
|
||||
#endif
|
||||
@@ -618,7 +618,7 @@ namespace Barotrauma
|
||||
if (humanConfigFile == null)
|
||||
{
|
||||
DebugConsole.ThrowError("Couldn't find a config file for humans from the selected content package!");
|
||||
DebugConsole.ThrowError("(The config file must end with ''human.xml'')");
|
||||
DebugConsole.ThrowError("(The config file must end with \"human.xml\")");
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user