Xref: utzoo comp.sources.games.bugs:237 rec.games.hack:2547 Path: utzoo!attcan!uunet!husc6!bloom-beacon!mit-eddie!uw-beaver!cornell!gil From: gil@svax.cs.cornell.edu (Gil Neiger) Newsgroups: comp.sources.games.bugs,rec.games.hack Subject: Empty Hives Message-ID: <17395@cornell.UUCP> Date: 18 May 88 16:35:03 GMT Sender: nobody@cornell.UUCP Reply-To: gil@cs.cornell.edu (Gil Neiger) Distribution: comp Organization: Cornell Univ. CS Dept, Ithaca NY Lines: 10 Nethack is currently set up to create beehives whether or not killer bees have been genocided. This seems to make genociding bees too much of a win; you find hives full of jelly, but no bees. The following fix to mklev.c takes care of this. Change line 207 (nethack 2.3) from if(dlevel > 9 && !rn2(5)) mkroom(BEEHIVE); to if(dlevel > 9 && !rn2(5) && !index(fut_geno,'k')) mkroom(BEEHIVE); - Gil Neiger