summaryrefslogtreecommitdiff
path: root/builtin/game/falling.lua
diff options
context:
space:
mode:
authorDániel Juhász <juhdanad@gmail.com>2017-02-18 20:26:19 +0100
committerparamat <mat.gregory@virginmedia.com>2017-02-18 22:47:24 +0000
commit00123ee04d19ecc98e0a6a9255e5697a78167360 (patch)
tree7b960732fde6ca3d3f5db4ae80c5332b3f80713b /builtin/game/falling.lua
parent111e7e1cc8316e4812e85fddc579feaeedecbb58 (diff)
downloadminetest-00123ee04d19ecc98e0a6a9255e5697a78167360.tar.gz
minetest-00123ee04d19ecc98e0a6a9255e5697a78167360.tar.bz2
minetest-00123ee04d19ecc98e0a6a9255e5697a78167360.zip
Fixes for colorwallmounted and colorfacedir nodes
Correct node placement prediction for attached colorwallmounted nodes. Correct placement direction for colorfacedir and colorwallmounted nodes. Correct detatch mechanism for attached colorwallmounted nodes.
Diffstat (limited to 'builtin/game/falling.lua')
-rw-r--r--builtin/game/falling.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/game/falling.lua b/builtin/game/falling.lua
index 39a74008c..5ef5289be 100644
--- a/builtin/game/falling.lua
+++ b/builtin/game/falling.lua
@@ -134,7 +134,8 @@ end
function builtin_shared.check_attached_node(p, n)
local def = core.registered_nodes[n.name]
local d = {x = 0, y = 0, z = 0}
- if def.paramtype2 == "wallmounted" then
+ if def.paramtype2 == "wallmounted" or
+ def.paramtype2 == "colorwallmounted" then
-- The fallback vector here is in case 'wallmounted to dir' is nil due
-- to voxelmanip placing a wallmounted node without resetting a
-- pre-existing param2 value that is out-of-range for wallmounted.