mirror of https://github.com/OpenTTD/OpenTTD
(svn r1031) -Fix: [Network] The unique-id was not as unique as I though it was..
parent
6d8a0c52f5
commit
c8452c5195
|
@ -1130,7 +1130,7 @@ void NetworkGenerateUniqueId()
|
|||
char coding_string[NETWORK_NAME_LENGTH];
|
||||
int di;
|
||||
|
||||
snprintf(coding_string, sizeof(coding_string), "%d%s%d", InteractiveRandom(), "OpenTTD Unique ID", InteractiveRandom());
|
||||
snprintf(coding_string, sizeof(coding_string), "%d%s", (uint)Random(), "OpenTTD Unique ID");
|
||||
|
||||
/* Generate the MD5 hash */
|
||||
md5_init(&state);
|
||||
|
|
Loading…
Reference in New Issue