From 56862a8997c6343d67b68d502035c1648cdd4c36 Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 12 May 2006 23:44:20 +0000 Subject: [PATCH] (svn r4856) - Newstations: catenary was not drawn on some station tiles --- newgrf_station.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newgrf_station.c b/newgrf_station.c index 1f438101b4..b1b521eeef 100644 --- a/newgrf_station.c +++ b/newgrf_station.c @@ -720,5 +720,5 @@ bool IsStationTileElectrifiable(TileIndex tile) statspec = st->speclist[specindex].spec; if (statspec == NULL) return false; - return HASBIT(statspec->pylons, GetStationGfx(tile)); + return HASBIT(statspec->pylons, GetStationGfx(tile)) || !HASBIT(statspec->wires, GetStationGfx(tile)); }