prevent Mjollnir from being auto-quivered if it's been thrown without return
and then picked back up while quiver slot is empty
plural of "fox" is not "foxen"
-change wording from "broken chest" to "lock-damaged chest" and suppress #force
- ", but its lock is already broken" when lock-damaged was already shown
+change wording from "broken chest" to "chest with a broken lock" and during
+ #force" suppress redundant info when locks state is unknown
Platform- and/or Interface-Specific Fixes
-/* NetHack 3.6 lock.c $NHDT-Date: 1446955300 2015/11/08 04:01:40 $ $NHDT-Branch: master $:$NHDT-Revision: 1.67 $ */
+/* NetHack 3.6 lock.c $NHDT-Date: 1521377334 2018/03/18 12:48:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.78 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
if (Is_box(otmp)) {
if (otmp->obroken) {
There("is %s here%s.", doname(otmp),
- /* The displayed name will have already been prefixed
- * with "lock-damaged" if otmp->lknown is already set
+ /* The displayed name will have already stated
+ * "with a broken lock" if otmp->lknown is already set
* so suppress the additional notification about the
* lock in that case. */
!otmp->lknown ? ", but its lock is already broken" : "");
-/* NetHack 3.6 objnam.c $NHDT-Date: 1521254016 2018/03/17 02:33:36 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.192 $ */
+/* NetHack 3.6 objnam.c $NHDT-Date: 1521377345 2018/03/18 12:49:05 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.194 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
if (lknown && Is_box(obj)) {
if (obj->obroken)
- /* 3.6.0 used "unlockable" here but that could be misunderstood
- to mean "capable of being unlocked" rather than the intended
- "not capable of being locked" */
- Strcat(prefix, "lock-damaged ");
+ /* 3.6.0 used an "unlockable" prefix here but that could be
+ misunderstood to mean "capable of being unlocked" rather
+ than the intended "not capable of being locked" */
+ Strcat(bp, " with a broken lock");
else if (obj->olocked)
Strcat(prefix, "locked ");
else