# HG changeset patch # User tron # Date 1171726445 0 # Node ID 9ca36a319df6d814b989584556a10b71c1a52562 # Parent fcac24c6f1c921bbdc95563fee0fe7fd453e9285 (svn r8781) -Fix A spectator cannot build stations, so do not include a special case for him diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -338,7 +338,7 @@ Station* st; FOR_ALL_STATIONS(st) { - if ((owner == PLAYER_SPECTATOR || st->owner == owner)) { + if (st->owner == owner) { uint cur_dist = DistanceManhattan(tile, st->xy); if (cur_dist < threshold) {