summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
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)
{