diff -r 74528540f256 -r 9a4834d48970 src/order_cmd.cpp --- a/src/order_cmd.cpp Sun Jun 24 22:18:46 2007 +0000 +++ b/src/order_cmd.cpp Sun Jun 24 22:42:11 2007 +0000 @@ -18,6 +18,7 @@ #include "saveload.h" #include "vehicle_gui.h" #include "cargotype.h" +#include "strings.h" /** * Called if a new block is added to the order-pool @@ -974,7 +975,8 @@ if (!IsCustomName(v->string_id)) { bak->name[0] = '\0'; } else { - GetName(bak->name, v->string_id & 0x7FF, lastof(bak->name)); + SetDParam(0, v->index); + GetString(bak->name, STR_VEHICLE_NAME, lastof(bak->name)); } /* If we have shared orders, store it on a special way */