From: Pasi Kallinen Date: Sat, 28 Mar 2015 15:20:57 +0000 (+0200) Subject: Balsa wands break easily X-Git-Tag: NetHack-3.6.0_RC01~528^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e4317fa6b2e121bee62abbe659e70f8bf827346;p=nethack Balsa wands break easily --- diff --git a/src/apply.c b/src/apply.c index ae7565f17..9bba15186 100644 --- a/src/apply.c +++ b/src/apply.c @@ -2891,6 +2891,7 @@ do_break_wand(obj) boolean fillmsg = FALSE; int expltype = EXPL_MAGICAL; char confirm[QBUFSZ], buf[BUFSZ]; + boolean is_fragile = (!strcmp(OBJ_DESCR(objects[obj->otyp]), "balsa")); if (yn(safe_qbuf(confirm, "Are you really sure you want to break ", "?", obj, yname, ysimple_name, "the wand")) == 'n') @@ -2899,7 +2900,7 @@ do_break_wand(obj) if (nohands(youmonst.data)) { You_cant("break %s without hands!", yname(obj)); return 0; - } else if (ACURR(A_STR) < 10) { + } else if (ACURR(A_STR) < (is_fragile ? 5 : 10)) { You("don't have the strength to break %s!", yname(obj)); return 0; }