-$NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.100 $ $NHDT-Date: 1581732920 2020/02/15 02:15:20 $
+$NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.101 $ $NHDT-Date: 1581803740 2020/02/15 21:55:40 $
General Fixes and Modified Features
-----------------------------------
give feedback if controlled level teleport attempt fails because hero is
already on the bottom level and player tries to go even deeper
unseen pet that drowned didn't give "you have a sad feeling" message
+prevent ravens from blinding other ravens: /corvus oculum corvi non eruit/
Fixes to 3.7.0-x Problems that Were Exposed Via git Repository
-/* NetHack 3.6 mondata.c $NHDT-Date: 1574648940 2019/11/25 02:29:00 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.76 $ */
+/* NetHack 3.6 mondata.c $NHDT-Date: 1581803740 2020/02/15 21:55:40 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.77 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2011. */
/* NetHack may be freely redistributed. See license for details. */
if (!haseyes(mdef->data))
return FALSE;
+ /* /corvus oculum corvi non eruit/
+ a saying expressed in Latin rather than a zoological observation:
+ "a crow will not pluck out the eye of another crow"
+ so prevent ravens from blinding each other */
+ if (magr->data == &mons[PM_RAVEN] && mdef->data == &mons[PM_RAVEN])
+ return FALSE;
+
switch (aatyp) {
case AT_EXPL:
case AT_BOOM: