X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Frealm-craft.c;h=3705760ce9e5eca5bf5b1f0166ea0bc82b2334ea;hb=e9959f429e3f424d282766674c4e8780229cf819;hp=ef953a92267997a6cadf7ac5903c055f32c6f907;hpb=d21c305b19739bd63a2c7fb5c17d951d4afb59ba;p=hengband%2Fhengband.git diff --git a/src/realm-craft.c b/src/realm-craft.c index ef953a922..3705760ce 100644 --- a/src/realm-craft.c +++ b/src/realm-craft.c @@ -170,13 +170,7 @@ cptr do_craft_spell(SPELL_IDX spell, BIT_FLAGS mode) if (desc) return _("アイテムにかかった弱い呪いを解除する。", "Removes normal curses from equipped items."); { - if (cast) - { - if (remove_curse()) - { - msg_print(_("誰かに見守られているような気がする。", "You feel as if someone is watching over you.")); - } - } + if (cast) (void)remove_curse(); } break; @@ -425,13 +419,7 @@ cptr do_craft_spell(SPELL_IDX spell, BIT_FLAGS mode) if (desc) return _("アイテムにかかった強力な呪いを解除する。", "Removes normal and heavy curse from equipped items."); { - if (cast) - { - if (remove_all_curse()) - { - msg_print(_("誰かに見守られているような気がする。", "You feel as if someone is watching over you.")); - } - } + if (cast) (void)remove_all_curse(); } break;