From: Pasi Kallinen <paxed@alt.org> Date: Tue, 18 Oct 2016 16:42:20 +0000 (+0300) Subject: With fragile wands, use snap instead of break X-Git-Tag: NetHack-3.6.1_RC01~560 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1506572ea0a70db319a9a376e65bfb3999e593b5;p=nethack With fragile wands, use snap instead of break --- diff --git a/src/apply.c b/src/apply.c index 8d64620a8..3486fb1a3 100644 --- a/src/apply.c +++ b/src/apply.c @@ -3210,8 +3210,8 @@ struct obj *obj; You("don't have the strength to break %s!", yname(obj)); return 0; } - pline("Raising %s high above your %s, you break it in two!", yname(obj), - body_part(HEAD)); + pline("Raising %s high above your %s, you %s it in two!", yname(obj), + body_part(HEAD), is_fragile ? "snap" : "break"); /* [ALI] Do this first so that wand is removed from bill. Otherwise, * the freeinv() below also hides it from setpaid() which causes problems.