From e9fbd1052849035c3ce746139a8a3415d7a0617c Mon Sep 17 00:00:00 2001 From: dolorous Date: Fri, 13 Jun 2008 05:36:34 +0000 Subject: 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 --- crawl-ref/source/stuff.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'crawl-ref/source/stuff.cc') 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) { -- cgit v1.2.3-54-g00ecf