ai/default/default.c
changeset 2635 7ed07303448d
parent 2630 7206058a7e82
child 2639 eeaefdabfdfd
--- a/ai/default/default.c	Sun Nov 13 21:16:34 2005 +0000
+++ b/ai/default/default.c	Mon Nov 14 08:09:57 2005 +0000
@@ -1086,9 +1086,9 @@
 
 static void AiWantTrainRoute(Player *p)
 {
-	uint16 r;
+	uint16 r = GB(Random(), 0, 16);
+
 	p->ai.railtype_to_use = GetBestRailtype(p);
-	r = (uint16)Random();
 
 	if (r > 0xD000) {
 		AiWantLongIndustryRoute(p);
@@ -1349,7 +1349,7 @@
 
 static void AiWantRoadRoute(Player *p)
 {
-	uint16 r = (uint16)Random();
+	uint16 r = GB(Random(), 0, 16);
 
 	if (r > 0x4000) {
 		AiWantLongRoadIndustryRoute(p);