order_cmd.c
changeset 2089 36f1c7177730
parent 1935 f43f062c9498
child 2140 d708eb80ab8b
--- a/order_cmd.c	Sun Jul 17 11:09:03 2005 +0000
+++ b/order_cmd.c	Sun Jul 17 12:29:33 2005 +0000
@@ -844,7 +844,7 @@
 		return false;
 
 	/* Only check every 20 days, so that we don't flood the message log */
-	if ( ( ( v->day_counter % 20) == 0 ) && (v->owner == _local_player) ) {
+	if ( (v->owner == _local_player) && (v->day_counter % 20 == 0) ) {
 		int n_st, problem_type = -1;
 		const Order *order;
 		const Station *st;