From: nethack.allison Date: Tue, 31 Dec 2002 04:11:38 +0000 (+0000) Subject: gnomish wizard follow-up to follow-up X-Git-Tag: MOVE2GIT~2271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=642cc45bd4762decb0b3d12dd2e4501cde6d57b1;p=nethack gnomish wizard follow-up to follow-up By request, withdraw the limitation and revert back to preventing all player species from polymorphing into variants of that same species. --- diff --git a/src/polyself.c b/src/polyself.c index ed267aceb..bd58398a6 100644 --- a/src/polyself.c +++ b/src/polyself.c @@ -306,8 +306,7 @@ boolean forcecontrol; /* The below polyok() fails either if everything is genocided, or if * we deliberately chose something illegal to force newman(). */ - if (!polyok(&mons[mntmp]) || !rn2(5) - || (Race_if(PM_GNOME) && your_race(&mons[mntmp]))) + if (!polyok(&mons[mntmp]) || !rn2(5) || your_race(&mons[mntmp])) newman(); else if(!polymon(mntmp)) return;