From 27738c6638c5ebdc2aec373617ee75202e719e62 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 4 Sep 2009 20:04:54 +0000 Subject: (svn r17414) -Codechange: only send/read the number of bits that can be actually useful when building industries --- src/ai/api/ai_industrytype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai') diff --git a/src/ai/api/ai_industrytype.cpp b/src/ai/api/ai_industrytype.cpp index 86e5269d7..ce19235c8 100644 --- a/src/ai/api/ai_industrytype.cpp +++ b/src/ai/api/ai_industrytype.cpp @@ -108,7 +108,7 @@ EnforcePrecondition(false, AIMap::IsValidTile(tile)); uint32 seed = ::InteractiveRandom(); - return AIObject::DoCommand(tile, (::InteractiveRandomRange(::GetIndustrySpec(industry_type)->num_table) << 16) | industry_type, seed, CMD_BUILD_INDUSTRY); + return AIObject::DoCommand(tile, (::InteractiveRandomRange(::GetIndustrySpec(industry_type)->num_table) << 8) | industry_type, seed, CMD_BUILD_INDUSTRY); } /* static */ bool AIIndustryType::ProspectIndustry(IndustryType industry_type) -- cgit v1.2.3-70-g09d2