Use less obsolete code

Disable XML comment warnings for the love of god
Fix some random tab/space conflict indentation
This commit is contained in:
Lucas Nicodemus 2015-02-28 19:09:02 -07:00
parent 008de9b28c
commit db6c09787d
4 changed files with 143 additions and 149 deletions

View file

@ -58,8 +58,8 @@ namespace TShockAPI
}
catch (Exception ex)
{
Log.Error("World saved notification failed");
Log.Error(ex.ToString());
TShock.Log.Error("World saved notification failed");
TShock.Log.Error(ex.ToString());
}
}
}
@ -134,8 +134,8 @@ namespace TShockAPI
}
catch (Exception e)
{
Log.Error("World saved failed");
Log.Error(e.ToString());
TShock.Log.Error("World saved failed");
TShock.Log.Error(e.ToString());
}
}
}