summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/clua/ziggurat.lua
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-29 13:25:03 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-29 13:25:03 +0000
commit59158b8c06e2ec94400b28e09f50b63027325fef (patch)
treefa23a3857ae515e7ae00f7e8e5a14892ac6dbb5c /crawl-ref/source/dat/clua/ziggurat.lua
parent3544990ee578f9f69a2c2f53589b2ccbe6d857d9 (diff)
downloadcrawl-ref-59158b8c06e2ec94400b28e09f50b63027325fef.tar.gz
crawl-ref-59158b8c06e2ec94400b28e09f50b63027325fef.zip
Fix broken timed portals (pointless).
Fix floor/rock colour changes running LOS when entering bazaars before the player is moved to the destination stair. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7685 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dat/clua/ziggurat.lua')
-rw-r--r--crawl-ref/source/dat/clua/ziggurat.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dat/clua/ziggurat.lua b/crawl-ref/source/dat/clua/ziggurat.lua
index 64323bee99..de6b152331 100644
--- a/crawl-ref/source/dat/clua/ziggurat.lua
+++ b/crawl-ref/source/dat/clua/ziggurat.lua
@@ -172,7 +172,7 @@ end
local function set_floor_colour(colour)
if not zig().level.floor_colour then
zig().level.floor_colour = colour
- dgn.change_floor_colour(colour, false)
+ dgn.change_floor_colour(colour)
end
end