Added authcode.txt, which will contain the auth code until the auth system is disabled. GSPs may provide this with the thought that users will be able to become superadmin a lot easier than before.

Fixed numerous cases where paths were incorrect, thanks to what ever dev has a Paths.Combine fetish, and doesn't want to use the obsolete function.
This commit is contained in:
Lucas Nicodemus 2011-07-12 00:19:40 -06:00
parent 525cc0241d
commit b629c6e48f
2 changed files with 17 additions and 3 deletions

View file

@ -1547,7 +1547,8 @@ namespace TShockAPI
args.Player.SendMessage("Your new account has been verified, and the /auth system has been turned off.");
args.Player.SendMessage("You can always use the /user command to manage players. Do not just delete the auth.lck file.");
args.Player.SendMessage("Thankyou for using TShock! http://tshock.co/ & http://github.com/TShock/TShock");
FileTools.CreateFile(TShock.SavePath + "auth.lck");
FileTools.CreateFile(Path.Combine(TShock.SavePath, "auth.lck"));
System.IO.File.Delete(Path.Combine(TShock.SavePath + "authcode.txt"));
TShock.AuthToken = 0;
}