# HG changeset patch # User maedhros # Date 2007-07-08 18:41:34 # Node ID 5d66395afdfafe4a9d78974988f71b2cc304d509 # Parent 73a0810e750e0f2b840058f71812d9ff8bdfcefe (svn r10481) -Codechange: Show a news message with the new industry when primary industry prospecting succeeds. diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1549,7 +1549,14 @@ CommandCost CmdBuildIndustry(TileIndex t if (Random() <= indspec->prospecting_chance) { for (int i = 0; i < 5000; i++) { const IndustryTileTable *it = indspec->table[RandomRange(indspec->num_table)]; - if (CreateNewIndustryHelper(RandomTile(), p1, flags, indspec, it) != NULL) break; + const Industry *ind = CreateNewIndustryHelper(RandomTile(), p1, flags, indspec, it); + if (ind != NULL) { + SetDParam(0, indspec->name); + SetDParam(1, ind->town->index); + AddNewsItem(indspec->new_industry_text, + NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_TILE, NT_OPENCLOSE, 0), ind->xy, 0); + break; + } } } }