summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-22 15:22:00 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-22 15:22:00 +0000
commit5ebdb32ce6998eb6e38956b01e63e9f472e9bb5b (patch)
tree4d5daf95441d76a6dbf2479a1b298214d668f1d5 /crawl-ref/source
parent68f29941d48c5152c2c7d9ee0dde0ef14dbab79c (diff)
downloadcrawl-ref-5ebdb32ce6998eb6e38956b01e63e9f472e9bb5b.tar.gz
crawl-ref-5ebdb32ce6998eb6e38956b01e63e9f472e9bb5b.zip
Made Spriggans herbivorous and slow-metabolism. For playtesting
of 1620744. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@694 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/newgame.cc2
-rw-r--r--crawl-ref/source/player.cc1
2 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 8cd0dddab4..ce3aae11a5 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -1765,6 +1765,8 @@ static void give_basic_mutations(unsigned char speci)
case SP_SPRIGGAN:
you.mutation[MUT_ACUTE_VISION] = 1;
you.mutation[MUT_FAST] = 3;
+ you.mutation[MUT_HERBIVOROUS] = 3;
+ you.mutation[MUT_SLOW_METABOLISM] = 2;
break;
case SP_CENTAUR:
you.mutation[MUT_FAST] = 1;
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 84f08d09bb..d1bc61c891 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -719,7 +719,6 @@ int player_hunger_rate(void)
switch (you.species)
{
case SP_HALFLING:
- case SP_SPRIGGAN:
hunger--;
break;