summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/delay.cc2
-rw-r--r--crawl-ref/source/dungeon.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 9d15847ebf..1ff6f0e3d4 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -162,7 +162,7 @@ void stop_delay( void )
case DELAY_MEMORISE:
// Losing work here is okay... having to start from
// scratch is a reasonable behaviour. -- bwr
- mpr( "Your memorization is interrupted." );
+ mpr( "Your memorisation is interrupted." );
pop_delay();
break;
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 1b38f80aeb..359c837cce 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -6744,7 +6744,8 @@ static int pick_an_altar(void)
{
altar_type = DNGN_ALTAR_ZIN + random2(NUM_GODS - 1);
}
- while (altar_type == DNGN_ALTAR_NEMELEX_XOBEH);
+ while (altar_type == DNGN_ALTAR_NEMELEX_XOBEH
+ || altar_type == DNGN_ALTAR_LUCY);
break;
}
}