summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-05 00:39:52 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-05 00:39:52 +0000
commit9eb7c7447e1f671c1af3d21f7ba2a85e6e3522e1 (patch)
tree846a474436f09f1391e3fc5bb751e34fcec77b68 /crawl-ref/source/enum.h
parentf28237548bb6a599ba5fd32e2c371af76de31088 (diff)
downloadcrawl-ref-9eb7c7447e1f671c1af3d21f7ba2a85e6e3522e1.tar.gz
crawl-ref-9eb7c7447e1f671c1af3d21f7ba2a85e6e3522e1.zip
Add miscellaneous minor fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8899 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 6629a1480b..2bffbdb455 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -1496,13 +1496,12 @@ enum killer_type // monster_die(), thing_thrown
KILL_DISMISSED // only on new game startup
};
-// This should be in order from the worst flight status to the best.
-// See mons_flies().
enum flight_type
{
FL_NONE = 0,
- FL_LEVITATE,
- FL_FLY
+ FL_LEVITATE, // doesn't require physical effort
+ FL_FLY // wings, etc... paralysis == fall
+
};
enum level_area_type // you.level_type
@@ -2071,13 +2070,6 @@ enum mon_attitude_type
ATT_FRIENDLY // created friendly (or tamed?)
};
-enum mon_flight_type
-{
- FLY_NOT,
- FLY_POWERED, // wings, etc... paralysis == fall
- FLY_LEVITATION // doesn't require physical effort
-};
-
// These are now saved in an unsigned long in the monsters struct.
enum monster_flag_type
{