Complete.Org: Mailing Lists: Archives: freeciv-dev: November 2004:
[Freeciv-Dev] (PR#11206) Re: Last helptext patch
Home

[Freeciv-Dev] (PR#11206) Re: Last helptext patch

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: [Freeciv-Dev] (PR#11206) Re: Last helptext patch
From: "Jason Short" <jdorje@xxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 26 Nov 2004 01:19:27 -0800
Reply-to: rt@xxxxxxxxxxx

<URL: http://rt.freeciv.org/Ticket/Display.html?id=11206 >

Christian Knoke wrote:
>   if (terrain_has_flag(i, TER_OCEANIC)) {
>     sprintf(buf + strlen(buf),
>             _("* Only naval units can travel on oceanic terrains."));
>     strcat(buf, "\n");
> 
> Well it's true and it is not ... what about airplanes?
> 
> * Only naval or air units can travel on oceanic terrains.

How about this?

-jason

Index: client/helpdata.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/helpdata.c,v
retrieving revision 1.81.2.3
diff -u -r1.81.2.3 helpdata.c
--- client/helpdata.c   25 Nov 2004 23:38:28 -0000      1.81.2.3
+++ client/helpdata.c   26 Nov 2004 09:18:46 -0000
@@ -1108,7 +1108,7 @@
   }
   if (terrain_has_flag(i, TER_OCEANIC)) {
     sprintf(buf + strlen(buf),
-           _("* Only naval units can travel on oceanic terrains."));
+           _("* Land units cannot travel on oceanic terrains."));
     strcat(buf, "\n");
   }
 

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#11206) Re: Last helptext patch, Jason Short <=