diff --git a/doc/fixes36.3 b/doc/fixes36.3 index 2ff46966a..bf9e7a39f 100644 --- a/doc/fixes36.3 +++ b/doc/fixes36.3 @@ -1,4 +1,4 @@ -$NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.97 $ $NHDT-Date: 1564608120 2019/07/31 21:22:00 $ +$NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.98 $ $NHDT-Date: 1564767725 2019/08/02 17:42:05 $ This fixes36.3 file is here to capture information about updates in the 3.6.x lineage following the release of 3.6.2 in May 2019. Please note, however, @@ -128,6 +128,8 @@ fix for feedback when a monster plays a fire horn at self to cure green slime ended up being used for zapping a wand of fire at self too wizard mode ^I "not carrying anything" still claimed "not carrying anything" if "(all items are already identified)" was given +monster throwing from stack of missiles (darts, daggers, spears) would cause + crash if it wasn't wielding a weapon (bug in multi-shot shooting fix) curses: sometimes the message window would show a blank line after a prompt curses: the change to show map in columns 1..79 instead of 2..80 made the highlight for '@' show up in the wrong place if clipped map had been diff --git a/src/mthrowu.c b/src/mthrowu.c index 7cb178ed4..1c65e2488 100644 --- a/src/mthrowu.c +++ b/src/mthrowu.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 mthrowu.c $NHDT-Date: 1564608121 2019/07/31 21:22:01 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.84 $ */ +/* NetHack 3.6 mthrowu.c $NHDT-Date: 1564767726 2019/08/02 17:42:06 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.85 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /*-Copyright (c) Pasi Kallinen, 2016. */ /* NetHack may be freely redistributed. See license for details. */ @@ -183,10 +183,10 @@ struct obj *otmp, *mwep; /* Elven Craftsmanship makes for light, quick bows */ if (otmp->otyp == ELVEN_ARROW && !otmp->cursed) multishot++; - /* for arrow, we checked bow&arrow at start of block, but for + /* for arrow, we checked bow&arrow when entering block, but for bow, so far we've only validated that otmp is a weapon stack; need to verify that it's a stack of arrows rather than darts */ - if (mwep->otyp == ELVEN_BOW && ammo_and_launcher(otmp, mwep) + if (mwep && mwep->otyp == ELVEN_BOW && ammo_and_launcher(otmp, mwep) && !mwep->cursed) multishot++; /* 1/3 of launcher enchantment */