summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-07-19 17:28:55 +0000
committerpeter1138 <peter1138@openttd.org>2007-07-19 17:28:55 +0000
commitd93fcea1f8b706349b0e07a565bed871dc047f7b (patch)
tree123916ae2dab9a041057e3f622d66203cd2e7607 /src/economy.cpp
parent58a3b5e60dde6a4906f7334e230638ff69fad1b8 (diff)
downloadopenttd-d93fcea1f8b706349b0e07a565bed871dc047f7b.tar.xz
(svn r10628) -Fix (r10606,FS#1055): Revert r10606 and fix the plural problem another way.
Diffstat (limited to 'src/economy.cpp')
-rw-r--r--src/economy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index 4f6136923..e3074fe00 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -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) {