Adds option to remember leave positions. Change to true in config.json

This commit is contained in:
Twitchy 2011-06-23 20:43:57 +12:00
parent f790d9378c
commit df1cbab1f5
6 changed files with 162 additions and 3 deletions

View file

@ -30,6 +30,7 @@ namespace TShockAPI
public static readonly string GroupsPath = Path.Combine(TShock.SavePath, "groups.txt");
public static readonly string UsersPath = Path.Combine(TShock.SavePath, "users.txt");
public static readonly string ItemBansPath = Path.Combine(TShock.SavePath, "itembans.txt");
public static readonly string RememberedPosPath = Path.Combine(TShock.SavePath, "oldpos.xml");
public static readonly string ConfigPath = Path.Combine(TShock.SavePath, "config.json");
public static void CreateFile(string file)