summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 3dfe627c57..dfcfa80aba 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1699,8 +1699,10 @@ static bool do_ability(const ability_def& abil)
break;
case ABIL_RENOUNCE_RELIGION:
- if (yesno("Really renounce your faith, foregoing its fabulous benefits?")
- && yesno( "Are you sure you won't change your mind later?" ))
+ if (yesno("Really renounce your faith, foregoing its fabulous benefits?",
+ false, 'n')
+ && yesno("Are you sure you won't change your mind later?",
+ false, 'n' ))
{
excommunication();
}