summaryrefslogtreecommitdiff
path: root/aircraft_gui.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2005-08-02 20:14:23 +0000
committerbjarni <bjarni@openttd.org>2005-08-02 20:14:23 +0000
commit2412ad5a2015770876eb6099f88fd217dba351eb (patch)
treef79645893764999ec6c2e31e08b0f75e4d6875d1 /aircraft_gui.c
parent4eb0158629f14f99c40887563a3c1fd8b184cf6d (diff)
downloadopenttd-2412ad5a2015770876eb6099f88fd217dba351eb.tar.xz
(svn r2795) -Fix: [Clone vehilcle] all error messages should now tell the right vehicle type (chrishuebsch)
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r--aircraft_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c
index 41bef1c32..71a30e91a 100644
--- a/aircraft_gui.c
+++ b/aircraft_gui.c
@@ -783,7 +783,7 @@ static bool HandleCloneVehClick(Vehicle *v, Window *w)
}
- DoCommandP(w->window_number, v->index, _ctrl_pressed ? 1 : 0,CcCloneAircraft,CMD_CLONE_VEHICLE | CMD_MSG(STR_882B_CAN_T_BUILD_RAILROAD_VEHICLE));
+ DoCommandP(w->window_number, v->index, _ctrl_pressed ? 1 : 0,CcCloneAircraft,CMD_CLONE_VEHICLE | CMD_MSG(STR_A008_CAN_T_BUILD_AIRCRAFT));
ResetObjectToPlace();