Skip to content

Commit 62dde1b

Browse files
committed
use blood for "Vlad was here" engravings
A hero in vampire form using a finger to engrave scrawls in blood; so should Vlad.
1 parent d2aff9a commit 62dde1b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/mklev.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,14 @@ makeniche(int trap_type)
673673
if (trap_type != ROCKTRAP)
674674
ttmp->once = 1;
675675
if (trap_engravings[trap_type]) {
676+
int engr_type = DUST;
677+
if (trap_type == TRAPDOOR) {
678+
/* "Vlad was here": vampires engrave with blood */
679+
engr_type = ENGR_BLOOD;
680+
}
676681
make_engr_at(xx, yy - dy,
677682
trap_engravings[trap_type], 0L,
678-
DUST);
683+
engr_type);
679684
wipe_engr_at(xx, yy - dy, 5,
680685
FALSE); /* age it a little */
681686
}

0 commit comments

Comments
 (0)