summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/levcomp.ypp
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-23 12:34:08 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-23 12:34:08 +0000
commit7bb02de9ea841f515a3a037435c07099f5165aea (patch)
treeec617828ce633ce96ce8aac731b6dd6e9d25439f /crawl-ref/source/util/levcomp.ypp
parentb51b5a77fc118319d78241686846b3e42b660e6c (diff)
downloadcrawl-ref-7bb02de9ea841f515a3a037435c07099f5165aea.tar.gz
crawl-ref-7bb02de9ea841f515a3a037435c07099f5165aea.zip
Lua functions for FLOORCOL and ROCKCOL are now named floorcol() and rockcol() instead of floor_colour and rock_colour, to match the convention for other .des headers (dpeg).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7547 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/util/levcomp.ypp')
-rw-r--r--crawl-ref/source/util/levcomp.ypp4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/util/levcomp.ypp b/crawl-ref/source/util/levcomp.ypp
index a678937ea9..23549491b6 100644
--- a/crawl-ref/source/util/levcomp.ypp
+++ b/crawl-ref/source/util/levcomp.ypp
@@ -359,7 +359,7 @@ floorcol : FLOORCOL { }
{
lc_map.main.add(
yylineno,
- make_stringf("floor_colour(\"%s\")",
+ make_stringf("floorcol(\"%s\")",
quote_lua_string($2).c_str()));
}
@@ -368,7 +368,7 @@ rockcol : ROCKCOL { }
{
lc_map.main.add(
yylineno,
- make_stringf("rock_colour(\"%s\")",
+ make_stringf("rockcol(\"%s\")",
quote_lua_string($2).c_str()));
}