Author: sveinung
Date: Sun Jan 18 04:07:08 2015
New Revision: 27713

URL: http://svn.gna.org/viewcvs/freeciv?rev=27713&view=rev
Log:
Adjust action immunity help text to work for actions the target may like.

Being immune to receiving wonder help isn't a good thing.

See patch #5716

Modified:
    trunk/client/helpdata.c

Modified: trunk/client/helpdata.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/helpdata.c?rev=27713&r1=27712&r2=27713&view=diff
==============================================================================
--- trunk/client/helpdata.c     (original)
+++ trunk/client/helpdata.c     Sun Jan 18 04:07:08 2015
@@ -3822,7 +3822,8 @@
 
     if (!vulnerable) {
       cat_snprintf(buf, bufsz,
-                   _("* Immune to the action \'%s\'.\n"),
+                   _("* Doing the action \'%s\' to this unit"
+                     " is impossible.\n"),
                    action_get_ui_name(act));
     }
   } action_iterate_end;
@@ -5129,9 +5130,10 @@
   action_iterate(act) {
     if (action_immune_government(gov, act)) {
       cat_snprintf(buf, bufsz,
-                   _("* Makes your %s immune to the action \'%s\'.\n"),
-                   _(action_target_kind_name(action_get_target_kind(act))),
-                   action_get_ui_name(act));
+                   _("* Makes it impossible to do the action \'%s\'"
+                     " to your %s.\n"),
+                   action_get_ui_name(act),
+                   _(action_target_kind_name(action_get_target_kind(act))));
     }
   } action_iterate_end;
 


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to