summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells3.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 26747c1f07..3a7f8130e1 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -1528,13 +1528,15 @@ static bool _teleport_player(bool allow_control, bool new_abyss_area, bool wizar
if (is_controlled)
{
- mpr("You may choose your destination (press '.' or delete to select).");
- mpr("Expect minor deviation.");
check_ring_TC = true;
- // Only have the more prompt for non-wizard.
+ // Only have the messages and the more prompt for non-wizard.
if (!wizard_tele)
+ {
+ mpr("You may choose your destination (press '.' or delete to select).");
+ mpr("Expect minor deviation.");
more();
+ }
while (true)
{