summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 20:01:38 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 20:01:38 +0000
commite0b41052eae0026d4e09adc8f586a912df6ff19d (patch)
tree40ce811c8969bdc541a4c4ba1713e11cde8aae94
parent20f61e40c48c46c84ff44f26257026b46d41bb58 (diff)
downloadcrawl-ref-e0b41052eae0026d4e09adc8f586a912df6ff19d.tar.gz
crawl-ref-e0b41052eae0026d4e09adc8f586a912df6ff19d.zip
Add still more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9183 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/newgame.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 71878565d2..907a396f1d 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -2900,9 +2900,9 @@ void give_basic_mutations(species_type speci)
you.mutation[MUT_DEFORMED] = 1;
break;
case SP_MUMMY:
- you.mutation[MUT_TORMENT_RESISTANCE] = 1;
- you.mutation[MUT_POISON_RESISTANCE] = 1;
- you.mutation[MUT_COLD_RESISTANCE] = 1;
+ you.mutation[MUT_TORMENT_RESISTANCE] = 1;
+ you.mutation[MUT_POISON_RESISTANCE] = 1;
+ you.mutation[MUT_COLD_RESISTANCE] = 1;
you.mutation[MUT_NEGATIVE_ENERGY_RESISTANCE] = 3;
break;
case SP_GNOME:
@@ -2910,15 +2910,15 @@ void give_basic_mutations(species_type speci)
break;
case SP_DEEP_DWARF:
you.mutation[MUT_SLOW_HEALING] = 3;
- you.mutation[MUT_MAPPING] = 2;
+ you.mutation[MUT_MAPPING] = 2;
break;
case SP_GHOUL:
- you.mutation[MUT_TORMENT_RESISTANCE] = 1;
- you.mutation[MUT_POISON_RESISTANCE] = 1;
- you.mutation[MUT_COLD_RESISTANCE] = 1;
+ you.mutation[MUT_TORMENT_RESISTANCE] = 1;
+ you.mutation[MUT_POISON_RESISTANCE] = 1;
+ you.mutation[MUT_COLD_RESISTANCE] = 1;
you.mutation[MUT_NEGATIVE_ENERGY_RESISTANCE] = 3;
- you.mutation[MUT_SAPROVOROUS] = 3;
- you.mutation[MUT_CARNIVOROUS] = 3;
+ you.mutation[MUT_SAPROVOROUS] = 3;
+ you.mutation[MUT_CARNIVOROUS] = 3;
break;
case SP_KENKU:
you.mutation[MUT_BEAK] = 1;
@@ -2943,7 +2943,7 @@ void give_basic_mutations(species_type speci)
break;
}
- // Starting mutations are unremoveable.
+ // Starting mutations are unremovable.
for (int i = 0; i < NUM_MUTATIONS; ++i)
you.demon_pow[i] = you.mutation[i];
}