From b67c624034e5fb74d7c062265fae115ba52e7a8f Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Tue, 14 Apr 2026 17:48:49 +0100 Subject: [PATCH] Vampires are not polymorphed by Vlad's throne The throne was intended for one specific vampire, but the others are "close enough" to not be warped into a different shape. --- src/sit.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/sit.c b/src/sit.c index 6ae51fdec..b8ea2cd79 100644 --- a/src/sit.c +++ b/src/sit.c @@ -325,9 +325,13 @@ special_throne_effect(int effect) { case 11: /* polymorph effect (not blocked by magic resistance, but other things that protect from polymorphs work) */ - pline("This throne was not meant for those such as you!"); - You_feel("a change coming over you."); - polyself(POLY_NOFLAGS); + if (is_vampire(gy.youmonst.data)) { + pline("You feel unworthy."); + } else { + pline("This throne was not meant for those such as you!"); + You_feel("a change coming over you."); + polyself(POLY_NOFLAGS); + } break; case 12: /* acid damage */