vehicle.c
changeset 1786 a54634efeb98
parent 1765 f8d29d5462c9
child 1793 8ac8a8c9ec0f
--- a/vehicle.c	Tue May 10 08:45:55 2005 +0000
+++ b/vehicle.c	Wed May 11 00:00:27 2005 +0000
@@ -1621,7 +1621,11 @@
 	_current_player = OWNER_NONE;
 }
 
-
+/** Give a custom name to your vehicle
+ * @param x,y unused
+ * @param p1 vehicle ID to name
+ * @param p2 unused
+ */
 int32 CmdNameVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
 {
 	Vehicle *v;
@@ -1631,12 +1635,10 @@
 
 	v = GetVehicle(p1);
 
-	if (!CheckOwnership(v->owner))
-		return CMD_ERROR;
+	if (!CheckOwnership(v->owner)) return CMD_ERROR;
 
 	str = AllocateNameUnique((const char*)_decode_parameters, 2);
-	if (str == 0)
-		return CMD_ERROR;
+	if (str == 0) return CMD_ERROR;
 
 	if (flags & DC_EXEC) {
 		StringID old_str = v->string_id;