summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-29 19:15:58 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-29 19:19:00 -0500
commit0b6632423e2e7abd23cf84aae60812648c586016 (patch)
treeeee1ff79f03c0e4a26caf0c7048cfb680506abce /crawl-ref/source
parent38f80187ebf71d88bfd82b558f19382621f522c5 (diff)
downloadcrawl-ref-0b6632423e2e7abd23cf84aae60812648c586016.tar.gz
crawl-ref-0b6632423e2e7abd23cf84aae60812648c586016.zip
Add minor cosmetic fixes.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/religion.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 18bb66eadd..045dd5920a 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -6846,12 +6846,12 @@ void god_pitch(god_type which_god)
return;
}
- describe_god( which_god, false );
+ describe_god(which_god, false);
- snprintf( info, INFO_SIZE, "Do you wish to %sjoin this religion?",
- (you.worshipped[which_god]) ? "re" : "" );
+ snprintf(info, INFO_SIZE, "Do you wish to %sjoin this religion?",
+ (you.worshipped[which_god]) ? "re" : "");
- if (!yesno( info, false, 'n' ) || !yesno("Are you sure?", false, 'n'))
+ if (!yesno(info, false, 'n') || !yesno("Are you sure?", false, 'n'))
{
you.turn_is_over = false; // Okay, opt out.
redraw_screen();
@@ -6859,7 +6859,6 @@ void god_pitch(god_type which_god)
}
// OK, so join the new religion.
-
redraw_screen();
const int old_piety = you.piety;