engine.c
changeset 2639 8a7342eb3a78
parent 2611 65b5313bc525
child 2708 9d1a8d5dc3ea
--- a/engine.c	Mon Nov 14 15:22:12 2005 +0000
+++ b/engine.c	Mon Nov 14 19:48:04 2005 +0000
@@ -883,8 +883,7 @@
 				} else {
 					e->flags |= ENGINE_PREVIEWING;
 					e->preview_wait = 20;
-					if (IS_INTERACTIVE_PLAYER(best_player))
-						ShowEnginePreviewWindow(i);
+					if (IS_INTERACTIVE_PLAYER(best_player)) ShowEnginePreviewWindow(i);
 				}
 			}
 		}
@@ -925,12 +924,11 @@
 
 	// In case the player didn't build the vehicle during the intro period,
 	// prevent that player from getting future intro periods for a while.
-	if (e->flags&ENGINE_INTRODUCING) {
+	if (e->flags & ENGINE_INTRODUCING) {
 		FOR_ALL_PLAYERS(p) {
 			uint block_preview = p->block_preview;
 
-			if (!HASBIT(e->player_avail,p->index))
-				continue;
+			if (!HASBIT(e->player_avail, p->index)) continue;
 
 			/* We assume the user did NOT build it.. prove me wrong ;) */
 			p->block_preview = 20;
@@ -956,8 +954,7 @@
 	e->player_avail = (byte)-1;
 
 	// Do not introduce new rail wagons
-	if (IsWagon(index))
-		return;
+	if (IsWagon(index)) return;
 
 	// make maglev / monorail available
 	FOR_ALL_PLAYERS(p) {