From e679dd442e797f70041d87866ada64f3b59a0689 Mon Sep 17 00:00:00 2001 From: kilbith Date: Tue, 25 Aug 2015 01:16:02 +0200 Subject: [PATCH] Don't cast a shadow a newly added nodeboxes --- worktable.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worktable.lua b/worktable.lua index b29b4d2..ec3f6df 100644 --- a/worktable.lua +++ b/worktable.lua @@ -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