(svn r10524) [NoAI] -Fix: follow coding-style noai
authortruelight
Thu, 12 Jul 2007 14:53:17 +0000
branchnoai
changeset 9633 6099483c684c
parent 9632 1816329e9cdd
child 9634 e359d82f0652
(svn r10524) [NoAI] -Fix: follow coding-style
src/ai/api/ai_vehiclelist.cpp
--- a/src/ai/api/ai_vehiclelist.cpp	Thu Jul 12 14:52:33 2007 +0000
+++ b/src/ai/api/ai_vehiclelist.cpp	Thu Jul 12 14:53:17 2007 +0000
@@ -6,7 +6,6 @@
 {
 	Vehicle *v;
 	FOR_ALL_VEHICLES(v) {
-		if (v->owner == _current_player && v->IsPrimaryVehicle())
-			this->AddItem(v->index);
+		if (v->owner == _current_player && v->IsPrimaryVehicle()) this->AddItem(v->index);
 	}
 }