From e9fcaf12279936dfd188b71c5f31ae3e1ff51cc2 Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 12 May 2006 23:44:20 +0000 Subject: (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 1f438101b..b1b521eee 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)); } -- cgit v1.2.3-54-g00ecf