From e63d0ce25374303ed7a08f0993eecb7d509b5eac Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 24 Mar 2008 16:50:41 +0000 Subject: Add whitespace fixes again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3859 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/mgrow.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/mgrow.cc') diff --git a/crawl-ref/source/mgrow.cc b/crawl-ref/source/mgrow.cc index aacacfe3d1..3d3a59185d 100644 --- a/crawl-ref/source/mgrow.cc +++ b/crawl-ref/source/mgrow.cc @@ -154,7 +154,7 @@ bool monsters::level_up() int hpboost = (hit_dice > 3? max_hit_points / 8 : max_hit_points / 4) + random2(5); - + // Not less than 3 hp, not more than 25. hpboost = std::min(std::max(hpboost, 3), 25); @@ -167,7 +167,7 @@ bool monsters::level_up() hit_points += hpboost; hit_points = std::min(hit_points, max_hit_points); } - + level_up_change(); return (true); -- cgit v1.2.3-54-g00ecf