OSDN Git Service

When increasing a stat, use "more" rather than "less" in the English message.
authorEric Branlund <ebranlund@fastmail.com>
Tue, 3 Sep 2019 02:32:56 +0000 (19:32 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Tue, 3 Sep 2019 02:32:56 +0000 (19:32 -0700)
src/effects.c

index 8f6e0e0..56464ca 100644 (file)
@@ -3492,7 +3492,7 @@ bool do_res_stat(int stat)
        /* Attempt to increase */
        if (res_stat(stat))
        {
-               msg_format(_("元通りに%sなった気がする。", "You feel less %s."), desc_stat_pos[stat]);
+               msg_format(_("元通りに%sなった気がする。", "You feel more %s."), desc_stat_pos[stat]);
 
                return (TRUE);
        }
@@ -3536,7 +3536,7 @@ bool do_inc_stat(int stat)
        /* Restoration worked */
        if (res)
        {
-               msg_format(_("元通りに%sなった気がする。", "You feel less %s."), desc_stat_pos[stat]);
+               msg_format(_("元通りに%sなった気がする。", "You feel more %s."), desc_stat_pos[stat]);
 
                return (TRUE);
        }