summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
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/enum.h
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/enum.h')
-rw-r--r--crawl-ref/source/enum.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 9f652b486e..1456e00701 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -4242,7 +4242,10 @@ enum trap_type
#endif
TRAP_ARROW,
TRAP_SPEAR,
+#if TAG_MAJOR_VERSION > 34
TRAP_TELEPORT,
+#endif
+ TRAP_TELEPORT_PERMANENT,
TRAP_ALARM,
TRAP_BLADE,
TRAP_BOLT,
@@ -4255,6 +4258,7 @@ enum trap_type
TRAP_WEB,
#if TAG_MAJOR_VERSION == 34
TRAP_GAS,
+ TRAP_TELEPORT,
#endif
NUM_TRAPS,
TRAP_MAX_REGULAR = TRAP_SHAFT,