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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index d2e05fcb30..17116e79f2 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -2015,7 +2015,7 @@ static trap_type random_trap_for_level(int level_number)
if (one_chance_in(20))
type = TRAP_TELEPORT;
if (one_chance_in(40))
- type = TRAP_AMNESIA;
+ type = TRAP_ALARM;
return (type);
}