src/order_cmd.cpp
changeset 7545 9a4834d48970
parent 7476 7f086e4b2a76
child 7887 5740662fc5ce
--- 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 */