From 1e193cb797ba5696c952ba05420220339e60a668 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Fri, 8 Jan 2010 18:38:30 +1000 Subject: Give Halflings the same HP gains as Sludge Elves (Vandal, dpeg). Currently, at XL10, a Halfling Hunter (with no fighting skill) will have 46hp. With the new changes, they would now have 54hp. I think this helps to differentiate them further from Kobolds. --- crawl-ref/source/player.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index f5a0c2a852..c2f62c6a35 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -2722,11 +2722,9 @@ void level_change(bool skip_attribute_increase) if (!(you.experience_level % 5)) modify_stat(STAT_DEXTERITY, 1, false, "level gain"); - if (you.experience_level < 17) + if (you.experience_level % 3) hp_adjust--; - if (!(you.experience_level % 2)) - hp_adjust--; break; case SP_KOBOLD: -- cgit v1.2.3-54-g00ecf