Skip to content

Commit

Permalink
Fixed UUID generator
Browse files Browse the repository at this point in the history
  • Loading branch information
DartPower committed Jun 2, 2019
1 parent ac8a3ed commit f851a4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ static void Main(string[] args)
string clientdir = System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + ClientPath;
string client = "DPT";
string user = "USSRNAME";
string uuid = Guid.NewGuid().ToString().Replace("-", string.Empty);
string session = "0";
string uuid = Guid.NewGuid().ToString();
string session = "0";
start(clientdir, client, user, uuid, session);
}
catch (Exception ex)
Expand Down

0 comments on commit f851a4f

Please sign in to comment.