From a343d86500270c3bddb292b44e8cee869d55c639 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 2 May 2006 13:29:06 +0000 Subject: [PATCH] (svn r4672) - Backport from trunk (r4467): New plantations now cause the correct ".. being planted .." news item --- industry_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/industry_cmd.c b/industry_cmd.c index 2e9bfb1028..258ca04c00 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1791,7 +1791,7 @@ static void MaybeNewIndustry(uint32 r) SetDParam(0, type + STR_4802_COAL_MINE); SetDParam(1, i->town->index); AddNewsItem( - (type != IT_FOREST) ? + (type != IT_FOREST && type != IT_FRUIT_PLANTATION && type != IT_RUBBER_PLANTATION && type != IT_COTTON_CANDY) ? STR_482D_NEW_UNDER_CONSTRUCTION : STR_482E_NEW_BEING_PLANTED_NEAR, NEWS_FLAGS(NM_THIN, NF_VIEWPORT|NF_TILE, NT_ECONOMY,0), i->xy, 0 );