summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgnevent.h
diff options
context:
space:
mode:
authorelliptic <hyperelliptical@gmail.com>2013-04-14 21:17:32 -0400
committerelliptic <hyperelliptical@gmail.com>2013-04-14 21:41:51 -0400
commitd05f410291f73692dcaba287ee963d988d816ecb (patch)
tree64e9b63284ee8719320ee0dde70a8f577f5d0d50 /crawl-ref/source/dgnevent.h
parent9efb55a327b22a614b300263f42d82a130562493 (diff)
downloadcrawl-ref-d05f410291f73692dcaba287ee963d988d816ecb.tar.gz
crawl-ref-d05f410291f73692dcaba287ee963d988d816ecb.zip
Make ctrl-attacking a wall not waste a turn.
This removes wall_hit trigger capabilities and the single vault that used it. There are plenty of other ways of triggering events.
Diffstat (limited to 'crawl-ref/source/dgnevent.h')
-rw-r--r--crawl-ref/source/dgnevent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dgnevent.h b/crawl-ref/source/dgnevent.h
index 1071d6742a..7e02c51680 100644
--- a/crawl-ref/source/dgnevent.h
+++ b/crawl-ref/source/dgnevent.h
@@ -27,7 +27,7 @@ enum dgn_event_type
DET_ITEM_PICKUP = 0x0200,
DET_ITEM_MOVED = 0x0400,
DET_FEAT_CHANGE = 0x0800,
- DET_WALL_HIT = 0x1000,
+ DET_UNUSED = 0x1000, // open for grabs
DET_DOOR_OPENED = 0x2000,
DET_DOOR_CLOSED = 0x4000,
DET_HP_WARNING = 0x8000,
@@ -39,7 +39,7 @@ enum dgn_event_type
DET_POSITION_MASK = DET_MONSTER_MOVED | DET_PLAYER_MOVED
| DET_PLAYER_IN_LOS | DET_ITEM_PICKUP
- | DET_ITEM_MOVED | DET_FEAT_CHANGE | DET_WALL_HIT
+ | DET_ITEM_MOVED | DET_FEAT_CHANGE
| DET_DOOR_OPENED | DET_DOOR_CLOSED
| DET_PRESSURE_PLATE,
};