Remove flat file conversion code

This commit is contained in:
Lucas Nicodemus 2012-01-01 02:48:15 -07:00
parent f47ce942f4
commit 2bfdaaaabc
3 changed files with 2 additions and 122 deletions

View file

@ -125,18 +125,6 @@ namespace TShockAPI.DB
File.Move(file, file2);
}
public void ConvertDB()
{
try
{
database.Query("UPDATE Warps SET WorldID=@0", Main.worldID.ToString());
}
catch (Exception ex)
{
Log.Error(ex.ToString());
}
}
public bool AddWarp(int x, int y, string name, string worldid)
{
try