summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 09cd0d6cce..3a5d8035a9 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -278,7 +278,7 @@ static callback_map level_type_post_callbacks;
*********************************************************************/
bool builder(int level_number, int level_type)
{
- const std::set<std::string> uniq_tags = you.uniq_map_tags;
+ const std::set<std::string> uniq_tags = you.uniq_map_tags;
const std::set<std::string> uniq_names = you.uniq_map_names;
// N tries to build the level, after which we bail with a capital B.
@@ -3052,9 +3052,9 @@ static void _builder_items(int level_number, char level_type, int items_wanted)
// Guarantee that the knife is uncursed and non-special.
if (item_no != NON_ITEM)
{
- mitm[item_no].plus = 0;
- mitm[item_no].plus2 = 0;
- mitm[item_no].flags = 0; // no id, no race/desc, no curse
+ mitm[item_no].plus = 0;
+ mitm[item_no].plus2 = 0;
+ mitm[item_no].flags = 0; // no id, no race/desc, no curse
mitm[item_no].special = 0; // no ego type
}
}