Skip to content

Commit

Permalink
Implement UUID generation
Browse files Browse the repository at this point in the history
  • Loading branch information
DartPower committed Jun 2, 2019
1 parent 0413a90 commit 62cd547
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 @@ -28,8 +28,8 @@ static void Main(string[] args)
string clientdir = System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + ClientPath;
string client = "DPT";
string user = "USSRNAME";
string uuid = "00000000000000000000000000000000";
string session = "0";
string uuid = Guid.NewGuid().ToString().Replace("-", string.Empty);
string session = "0";
start(clientdir, client, user, uuid, session);
}
catch (Exception ex)
Expand Down

0 comments on commit 62cd547

Please sign in to comment.