station_cmd.c
changeset 2395 19b4da30806b
parent 2295 af67e1ea8687
child 2422 914a12dee832
--- a/station_cmd.c	Tue Sep 06 16:14:37 2005 +0000
+++ b/station_cmd.c	Wed Sep 07 15:10:11 2005 +0000
@@ -2546,8 +2546,6 @@
 
 static inline void byte_inc_sat(byte *p) { byte b = *p + 1; if (b != 0) *p = b; }
 
-static byte _rating_boost[3] = { 0, 31, 63};
-
 static void UpdateStationRating(Station *st)
 {
 	GoodsEntry *ge;
@@ -2581,11 +2579,6 @@
 				(rating += 13, true);
 			}
 
-			{
-				if (st->owner != OWNER_NONE && !IS_HUMAN_PLAYER(st->owner))
-							rating += _rating_boost[_opt.diff.competitor_intelligence];
-			}
-
 			if (st->owner < MAX_PLAYERS && HASBIT(st->town->statues, st->owner))
 				rating += 26;