summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-08 14:23:03 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-08 14:46:22 +0100
commit28f6c800df6bc63658b9c79e803bf81ac282aa1d (patch)
treedf593b87768f0324939f89ed6f4d7aea8c950de4 /crawl-ref/source/enum.h
parenta4eda3c37bb9ec6d9b847e827390a66062229b99 (diff)
downloadcrawl-ref-28f6c800df6bc63658b9c79e803bf81ac282aa1d.tar.gz
crawl-ref-28f6c800df6bc63658b9c79e803bf81ac282aa1d.zip
Split map knowledge and FPROPs.
map_cell no longer has the field "properties", which has been replaced by the unsigned long array env.pgrid. env.map has been renamed to env.map_knowledge. It should really be moved into player.
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 8229e7aa17..4cfbd9030b 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -879,20 +879,6 @@ enum level_flag_type
LFLAG_NO_MAGIC_MAP = (1 << 2) // Level can't be magic mapped.
};
-enum feature_property_type
-{
- FPROP_NONE = 0,
- FPROP_SANCTUARY_1 = (1 << 0),
- FPROP_SANCTUARY_2 = (1 << 2),
- FPROP_BLOODY = (1 << 3),
- FPROP_VAULT = (1 << 4),
- FPROP_HIGHLIGHT = (1 << 5), // Highlight grids on the X map for debugging.
- // NOTE: Bloody floor and sanctuary are exclusive.
- FPROP_FORCE_EXCLUDE = (1 << 6),
- FPROP_NO_CLOUD_GEN = (1 << 7),
- FPROP_NO_RTELE_INTO = (1 << 8)
-};
-
// NOTE: The order of these is very important to their usage!
// [dshaligram] If adding/removing from this list, also update view.cc!
enum dungeon_char_type