summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-10-07 00:21:19 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-10-07 00:21:19 +0000
commit108ddcb271866c11e8c980977e50009594d11e4e (patch)
tree6a3c0fd27aa8e6812b22fbb4743a661a4dd7e895 /crawl-ref/source/mon-util.h
parent95581358c4008d1f3ca346db4045e2c4ab4dcef9 (diff)
downloadcrawl-ref-108ddcb271866c11e8c980977e50009594d11e4e.tar.gz
crawl-ref-108ddcb271866c11e8c980977e50009594d11e4e.zip
Expand monster speed handling to work on the level of individual
monsters. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7166 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.h')
-rw-r--r--crawl-ref/source/mon-util.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-util.h b/crawl-ref/source/mon-util.h
index 2232cf4b55..7e9b8bb3b1 100644
--- a/crawl-ref/source/mon-util.h
+++ b/crawl-ref/source/mon-util.h
@@ -483,7 +483,7 @@ bool mons_is_unique(int mclass);
* *********************************************************************** */
// int exper_value(int mclass, int mHD, int maxhp);
int mons_difficulty(int mtype);
-int exper_value( const monsters *monster );
+int exper_value(const monsters *monster);
// last updated 12may2000 {dlb}
@@ -591,7 +591,8 @@ int mons_weight(int mclass);
/* ***********************************************************************
* called from: monplace mon-util
* *********************************************************************** */
-int mons_speed(int mclass);
+int mons_class_speed(int mc);
+int mons_speed(const monsters *mon);
// last updated 12may2000 {dlb}