Skip to content

Commit

Permalink
Message when cursed gain level is blocked at Vlad's Tower.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Jul 27, 2023
1 parent 025927b commit 7f7daa9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions hackem_changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

Version 1.2.0 (unreleased)

Message when cursed gain level is blocked at Vlad's Tower.
Two alignment keys can be forged together to create The Key of Access.
Clarify message when Vlad's tower is unlocked.
Switch Und-Vam blood potions for vampire blood potions.
Expand Down
5 changes: 4 additions & 1 deletion src/do.c
Original file line number Diff line number Diff line change
Expand Up @@ -1812,8 +1812,11 @@ boolean at_stairs, falling, portal;
if (at_stairs && !Blind) {
You("see a magical glyph hovering in midair, preventing access to the stairs.");
pline("It reads 'Access denied, by order of the alignment quest nemeses'.");
} else
} else if (at_stairs)
pline("A mysterious force prevents you from accessing the stairs.");
else
pline("A mysterious force prevents you from ascending.");

return;
} else if (!u.uevent.utower) {
unlockedtower();
Expand Down

0 comments on commit 7f7daa9

Please sign in to comment.