summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-06-17 00:01:05 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-06-17 21:19:36 -0700
commitc06e81946b46ccecb06569b5fca87d507619642e (patch)
tree523e608ada7ed22556e3bea1250d48d2f356d323 /crawl-ref/source/tilepick.cc
parent6f04e5fe9d0966441777763468e6cc9f75b804c9 (diff)
downloadcrawl-ref-c06e81946b46ccecb06569b5fca87d507619642e.tar.gz
crawl-ref-c06e81946b46ccecb06569b5fca87d507619642e.zip
Replace randomly-generate teleport traps with 1-shot versions
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index b234983057..d6547c5834 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -108,6 +108,8 @@ static tileidx_t _tileidx_trap(trap_type type)
return TILE_DNGN_TRAP_SPEAR;
case TRAP_TELEPORT:
return TILE_DNGN_TRAP_TELEPORT;
+ case TRAP_TELEPORT_PERMANENT:
+ return TILE_DNGN_TRAP_TELEPORT;
case TRAP_ALARM:
return TILE_DNGN_TRAP_ALARM;
case TRAP_BLADE: