summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/clua.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-24 06:48:19 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-24 06:48:19 +0000
commit0ff119e29e26761c5c24b70dacbee90de6735323 (patch)
tree542ff87198336157f74ab3b0e7a838ca67d85c91 /crawl-ref/source/clua.cc
parent496a1fc6bb248d48e8d4c9b6bf5c6f8b5360c673 (diff)
downloadcrawl-ref-0ff119e29e26761c5c24b70dacbee90de6735323.tar.gz
crawl-ref-0ff119e29e26761c5c24b70dacbee90de6735323.zip
Tweaked bazaar portal timeout. Bazaars may now replace normal shops.
Fixed broken dungeon connectivity checks. Include math lib in Lua interpreters. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1924 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/clua.cc')
-rw-r--r--crawl-ref/source/clua.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/clua.cc b/crawl-ref/source/clua.cc
index d0535fd03b..d16c2bf31d 100644
--- a/crawl-ref/source/clua.cc
+++ b/crawl-ref/source/clua.cc
@@ -584,6 +584,7 @@ void CLua::init_lua()
luaopen_base(_state);
luaopen_string(_state);
luaopen_table(_state);
+ luaopen_math(_state);
// Open Crawl bindings
luaopen_kills(_state);