Don't cast a shadow a newly added nodeboxes

This commit is contained in:
kilbith 2015-08-25 01:16:02 +02:00
parent 0137f17e6c
commit e679dd442e

View File

@ -201,7 +201,8 @@ local function groups(m)
end
local function shady(w)
if w:find("stair") or w == "slab" then return false end
if w == "stair" or w == "slab" or w == "innerstair" or
w == "outerstair" then return false end
return true
end