summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 11:51:46 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 11:51:46 +0000
commit1ebe91d589aa94c080cc47e987da73e6fffd2387 (patch)
tree20c923e14ce13892aa047ddccba4a8d8ee6ca0c3
parent68d7c4e8ad875de7ee0bcfc33cd86105c063318b (diff)
downloadcrawl-ref-1ebe91d589aa94c080cc47e987da73e6fffd2387.tar.gz
crawl-ref-1ebe91d589aa94c080cc47e987da73e6fffd2387.zip
new prayer prompt (yes, renew, cancel) for 0.3
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2558 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/religion.cc12
1 files changed, 11 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index fa9de1bd8b..7dbf06baa1 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -803,12 +803,22 @@ void pray()
const bool was_praying = you.duration[DUR_PRAYER];
if (you.duration[DUR_PRAYER])
{
- if ( yesno("Do you want to stop praying?", true, 'y') )
+ mpr("Stop praying? ('y' ends prayer, 'r' will renew prayer)", MSGCH_PROMPT);
+
+ int tmp = get_ch();
+
+ if ( tmp == 'y' || tmp == 'Y')
{
mpr( "Your prayer is over.", MSGCH_PRAY, you.religion );
you.duration[DUR_PRAYER] = 0;
return;
}
+
+ if ( tmp != 'r' && tmp != 'R')
+ {
+ mesclr();
+ return;
+ }
}
const god_type altar_god = grid_altar_god(grd[you.x_pos][you.y_pos]);