Vampire in a genocided shape

When you genocided a monster a vampire was shapeshifted into,
the vampire might've stayed in the genocided form.
Always revert back to vampire form if we tried to pick a genocided form.
This commit is contained in:
Pasi Kallinen
2021-12-21 11:18:45 +02:00
parent ef1eeed755
commit 81a7157d7d

View File

@@ -3964,6 +3964,10 @@ pickvampshape(struct monst* mon)
mndx = (!rn2(4) && !uppercase_only) ? PM_FOG_CLOUD : PM_VAMPIRE_BAT;
break;
}
if (g.mvitals[mndx].mvflags & G_GENOD)
return mon->cham;
return mndx;
}