summaryrefslogtreecommitdiff
path: root/industry_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-08-01 13:01:14 +0000
committertron <tron@openttd.org>2005-08-01 13:01:14 +0000
commit91353c841f3adde7f601ab4185e3486a034dbd04 (patch)
tree3566a6de856b142c5cfbe2c15e193bbe50e194df /industry_cmd.c
parente06d017b91715f8e24fb2053bf62fc2ad9d1ae89 (diff)
downloadopenttd-91353c841f3adde7f601ab4185e3486a034dbd04.tar.xz
(svn r2780) Remove some more unused strings and make the use of a few strings more explicit
Diffstat (limited to 'industry_cmd.c')
-rw-r--r--industry_cmd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/industry_cmd.c b/industry_cmd.c
index 94e829ad6..d8a605cc2 100644
--- a/industry_cmd.c
+++ b/industry_cmd.c
@@ -1825,7 +1825,11 @@ static void MaybeNewIndustry(uint32 r)
SetDParam(0, type + STR_4802_COAL_MINE);
SetDParam(1, i->town->index);
- AddNewsItem( STR_482D_NEW_UNDER_CONSTRUCTION + (type == IT_FOREST), NEWS_FLAGS(NM_THIN,NF_VIEWPORT|NF_TILE,NT_ECONOMY,0), i->xy, 0);
+ AddNewsItem(
+ (type != IT_FOREST) ?
+ 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
+ );
}
static void ChangeIndustryProduction(Industry *i)