summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index bbcf16d52a..61894e43cb 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -5077,14 +5077,9 @@ bool _give_items_skills()
{
_print_character_info();
- textcolor( CYAN );
+ textcolor(CYAN);
cprintf(EOL "From where do you draw your power?" EOL);
-
- if (_necromancy_okay())
- textcolor(LIGHTGREY);
- else
- textcolor(DARKGREY);
-
+ textcolor(_necromancy_okay() ? LIGHTGREY : DARKGREY);
cprintf("a - Necromantic magic" EOL);
// Yredelemnul is an okay choice for everyone.
@@ -5191,7 +5186,6 @@ bool _give_items_skills()
you.piety = 28;
you.inv[0].plus = 1 + random2(2);
you.inv[0].plus2 = 3 - you.inv[0].plus;
- you.inv[2].quantity = 0;
you.skills[SK_INVOCATIONS] = 3;
break;
}