summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 9fc424c628..1bb2ab3626 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -5040,7 +5040,8 @@ void describe_god( god_type which_god, bool give_title )
if (which_god == GOD_NO_GOD) //mv:no god -> say it and go away
{
cprintf( EOL "You are not religious." );
- goto end_god_info;
+ getch();
+ return;
}
colour = god_colour(which_god);
@@ -5323,8 +5324,5 @@ void describe_god( god_type which_god, bool give_title )
cprintf( "None." EOL );
}
-
-end_god_info: //end of everything (life, world, universe etc.)
-
getch(); // wait until keypressed
} //mv: That's all folks.