Complete.Org: Mailing Lists: Archives: freeciv-dev: July 2000:
[Freeciv-Dev] Suggested corrections to control.c
Home

[Freeciv-Dev] Suggested corrections to control.c

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: freeciv-dev@xxxxxxxxxxx
Subject: [Freeciv-Dev] Suggested corrections to control.c
From: Erik Sigra <freeciv@xxxxxxx>
Date: Fri, 28 Jul 2000 15:46:22 +0200

Here are some changes to control.c which will make the messages to the
user clearer:

"Game: You can only unload transporter units."
-No, you can move, sentry and disband them as well.
Changed to:
"Game: Only transporter units can be unloaded."

"Game: Only settlers, and military units"
" in cities, can be put in auto-mode."
-What about engineers?
Changed to:
"Game: Only settler units, and military units"
" in cities, can be put in auto-mode."

Erik Sigra
--- control.c.orig      Fri Jul 28 15:37:08 2000
+++ control.c   Fri Jul 28 15:38:37 2000
@@ -499,7 +499,7 @@
   struct packet_unit_request req;
 
   if(!get_transporter_capacity(punit)) {
-    append_output_window(_("Game: You can only unload transporter units."));
+    append_output_window(_("Game: Only transporter units can be unloaded."));
     return;
   }
 
@@ -729,7 +729,7 @@
     req.name[0]='\0';
     send_packet_unit_request(&aconnection, &req, PACKET_UNIT_AUTO);
   } else {
-    append_output_window(_("Game: Only settlers, and military units"
+    append_output_window(_("Game: Only settler units, and military units"
                         " in cities, can be put in auto-mode."));
   }
 }

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] Suggested corrections to control.c, Erik Sigra <=