(svn r10628) -Fix (r10606,FS#1055): Revert r10606 and fix the plural problem another way.

This commit is contained in:
peter1138
2007-07-19 17:28:55 +00:00
parent 58a3b5e60d
commit d93fcea1f8
3 changed files with 5 additions and 5 deletions

View File

@@ -871,7 +871,7 @@ Pair SetupSubsidyDecodeParam(const Subsidy* s, bool mode)
/* if mode is false, use the singular form */
const CargoSpec *cs = GetCargo(s->cargo_type);
SetDParam(0, mode ? cs->name_plural : cs->name);
SetDParam(0, mode ? cs->name : cs->name_single);
if (s->age < 12) {
if (cs->town_effect != TE_PASSENGERS && cs->town_effect != TE_MAIL) {