From 5e26589fa7882984e8347e041cb75dcd3e8ce25f Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 19 Feb 2022 17:06:33 +0200 Subject: [PATCH] Make killer bee - queen bee transformation apply to hero if they've polyformed to a killer bee and eat royal jelly. --- src/eat.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/eat.c b/src/eat.c index 8ffed737d..79f3dd3c2 100644 --- a/src/eat.c +++ b/src/eat.c @@ -2269,6 +2269,10 @@ fpostfx(struct obj *otmp) livelog_printf(LL_CONDUCT, "became literate by reading the fortune inside a cookie"); break; case LUMP_OF_ROYAL_JELLY: + if (g.youmonst.data == &mons[PM_KILLER_BEE] && !Unchanging + && polymon(PM_QUEEN_BEE)) + break; + /* This stuff seems to be VERY healthy! */ gainstr(otmp, 1, TRUE); if (Upolyd) { -- 2.50.1