OSDN Git Service

For readability of an English message, replaced "do" followed by a gerund with a...
authorEric Branlund <ebranlund@fastmail.com>
Wed, 27 Jan 2021 19:55:43 +0000 (11:55 -0800)
committerHourier <hourier@users.sourceforge.jp>
Sat, 30 Jan 2021 05:57:26 +0000 (14:57 +0900)
src/cmd-action/cmd-attack.c

index 021ba23..02f5d74 100644 (file)
@@ -171,7 +171,7 @@ bool do_cmd_attack(player_type *attacker_ptr, POSITION y, POSITION x, combat_opt
 
     if (!has_right_hand_weapon(attacker_ptr) && !has_left_hand_weapon(attacker_ptr)
         && !(attacker_ptr->muta2 & (MUT2_HORNS | MUT2_BEAK | MUT2_SCOR_TAIL | MUT2_TRUNK | MUT2_TENTACLES))) {
-        msg_format(_("%s攻撃できない。", "You cannot do attacking."), (empty_hands(attacker_ptr, FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : "");
+        msg_format(_("%s攻撃できない。", "You cannot attack."), (empty_hands(attacker_ptr, FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : "");
         return FALSE;
     }