Changeset - r10701:bcbdad2bd171
[Not reviewed]
master
0 1 0
truebrain - 15 years ago 2009-01-12 17:40:13
truebrain@openttd.org
(svn r15033) -Fix (r15027): silent a warning when compiling without network
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/ai/api/ai_object.cpp
Show inline comments
 
@@ -202,7 +202,6 @@ bool AIObject::DoCommand(TileIndex tile,
 
		return false;
 
	}
 

	
 
	CompanyID old_company;
 
	CommandCost res;
 

	
 
	/* Set the default callback to return a true/false result of the DoCommand */
 
@@ -230,7 +229,7 @@ bool AIObject::DoCommand(TileIndex tile,
 
	if (_networking) {
 
		/* NetworkSend_Command needs _local_company to be set correctly, so
 
		 * adjust it, and put it back right after the function */
 
		old_company = _local_company;
 
		CompanyID old_company = _local_company;
 
		_local_company = _current_company;
 
		::NetworkSend_Command(tile, p1, p2, cmd, CcAI, text);
 
		_local_company = old_company;
0 comments (0 inline, 0 general)