summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-13 05:36:34 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-13 05:36:34 +0000
commite9fbd1052849035c3ce746139a8a3415d7a0617c (patch)
treebe175bb1e02939198b2693b769b8e45a588b58c3 /crawl-ref/source/stuff.cc
parentb387e5b77f4ceb3f64cad79d7cd3ebdc7ccb188d (diff)
downloadcrawl-ref-e9fbd1052849035c3ce746139a8a3415d7a0617c.tar.gz
crawl-ref-e9fbd1052849035c3ce746139a8a3415d7a0617c.zip
Add still more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5772 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index 92ba9294ec..bebf74d937 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -806,25 +806,23 @@ void modify_all_stats(int STmod, int IQmod, int DXmod)
{
you.strength += STmod;
you.max_strength += STmod;
- you.redraw_strength = 1;
+ you.redraw_strength = true;
}
if (IQmod)
{
you.intel += IQmod;
you.max_intel += IQmod;
- you.redraw_intelligence = 1;
+ you.redraw_intelligence = true;
}
if (DXmod)
{
you.dex += DXmod;
you.max_dex += DXmod;
- you.redraw_dexterity = 1;
+ you.redraw_dexterity = true;
}
-
- return;
-} // end modify_stat()
+}
void canned_msg(canned_message_type which_message)
{