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.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 65a915bfdb..082dad4752 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -2397,8 +2397,8 @@ static void give_random_potion( int slot )
{
// Mummies can't quaff and don't care
if (you.species == SP_MUMMY)
- return;
-
+ return;
+
you.inv[ slot ].quantity = 1;
you.inv[ slot ].base_type = OBJ_POTIONS;
you.inv[ slot ].plus = 0;
@@ -2406,7 +2406,7 @@ static void give_random_potion( int slot )
int temp_rand = 8;
if (you.is_undead)
- temp_rand--;
+ temp_rand--;
switch (random2(temp_rand))
{