Merge branch 'no-bees-in-these-trees' of https://github.com/copperwater/NetHack into NetHack-5.0

This commit is contained in:
nhmall
2026-05-24 15:57:03 -04:00
+3 -1
View File
@@ -1137,7 +1137,9 @@ kick_nondoor(coordxy x, coordxy y, int avrg_attrib)
/* nothing, fruit or trouble? 75:23.5:1.5% */
if (rn2(3)) {
if (!rn2(6) && !(svm.mvitals[PM_KILLER_BEE].mvflags & G_GONE))
if (!rn2(6)
&& !(svm.mvitals[PM_KILLER_BEE].mvflags & G_GONE)
&& !(gm.maploc->looted & TREE_SWARM))
You_hear("a low buzzing."); /* a warning */
kick_ouch(x, y, "");
return ECMD_TIME;