diff -Naur nethack-3.4.0/src/eat.c nethack-newt/src/eat.c --- nethack-3.4.0/src/eat.c Thu Mar 21 10:43:04 2002 +++ nethack-newt/src/eat.c Thu Jul 11 12:36:08 2002 @@ -776,6 +776,19 @@ if (eatmbuf) (void)eatmdone(); switch(pm) { + case PM_NEWT: + /* MRKR: "eye of newt" gives small magical energy boost */ + /* From an idea disussed in r.g.r.n by Rodney, Dayv and Rast*/ + + You_feel("a mild buzz."); + u.uen += rnd(3); + if (u.uen > u.uenmax) { + u.uenmax++; + u.uen = u.uenmax; + } + flags.botl = 1; + break; + case PM_WRAITH: pluslvl(FALSE); break;