summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-17 05:28:33 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-17 05:28:33 +0000
commit589b73df2b8f761ebaff6ec0b0f755b5f307f3fc (patch)
tree438fe8a691e29407b078e1d1f2ecbcf1232348bc /crawl-ref/source/religion.cc
parentf8fed529e3de58876d111131ef0deaac98f9d2cb (diff)
downloadcrawl-ref-589b73df2b8f761ebaff6ec0b0f755b5f307f3fc.tar.gz
crawl-ref-589b73df2b8f761ebaff6ec0b0f755b5f307f3fc.zip
Add yet more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5912 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 81b61ef49f..92feac2a81 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -802,12 +802,12 @@ static void _inc_penance(god_type god, int val)
fall_into_a_pool( you.x_pos, you.y_pos, true,
grd[you.x_pos][you.y_pos] );
}
-} // end _inc_penance()
+}
static void _inc_penance(int val)
{
_inc_penance(you.religion, val);
-} // end _inc_penance()
+}
static void _inc_gift_timeout(int val)
{
@@ -2146,8 +2146,8 @@ void god_speaks( god_type god, const char *mesg )
// This function is the merger of done_good() and naughty().
// Returns true if god was interested (good or bad) in conduct.
-bool did_god_conduct( conduct_type thing_done, int level, bool known,
- const monsters *victim )
+bool did_god_conduct(conduct_type thing_done, int level, bool known,
+ const monsters *victim)
{
bool ret = false;
int piety_change = 0;
@@ -2787,10 +2787,10 @@ static void _dock_piety(int piety_loss, int penance)
else if (penance) // only if still in religion
{
if (last_penance_lecture != you.num_turns)
- god_speaks( you.religion,
- "\"You will pay for your transgression, mortal!\"" );
+ god_speaks(you.religion,
+ "\"You will pay for your transgression, mortal!\"");
last_penance_lecture = you.num_turns;
- _inc_penance( penance );
+ _inc_penance(penance);
}
}