Add files via upload
This commit is contained in:
@@ -171,3 +171,7 @@ v0.1.27
|
||||
|
||||
v0.1.28
|
||||
* Added support for lwwires. Wires will not connect to conduits.
|
||||
|
||||
|
||||
v0.1.29
|
||||
* Fixed piston moving piston blanks.
|
||||
|
2
init.lua
2
init.lua
@@ -1,4 +1,4 @@
|
||||
local version = "0.1.28"
|
||||
local version = "0.1.29"
|
||||
local mod_storage = minetest.get_mod_storage ()
|
||||
|
||||
|
||||
|
11
pistons.lua
11
pistons.lua
@@ -150,6 +150,11 @@ local function add_pos_to_list (pos, dir, movedir, node_list, check_list)
|
||||
return 1
|
||||
end
|
||||
|
||||
if node.name == "lwcomponents:piston_blank_1" or
|
||||
node.name == "lwcomponents:piston_blank_2" then
|
||||
return 0
|
||||
end
|
||||
|
||||
local meta = minetest.get_meta (pos)
|
||||
local timer = minetest.get_node_timer (pos)
|
||||
|
||||
@@ -1083,14 +1088,14 @@ minetest.register_node("lwcomponents:piston_blank_2", {
|
||||
light_source = 0,
|
||||
sunlight_propagates = true,
|
||||
walkable = true,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
pointable = true,
|
||||
diggable = true,
|
||||
climbable = false,
|
||||
buildable_to = false,
|
||||
floodable = false,
|
||||
is_ground_content = false,
|
||||
drop = "",
|
||||
groups = { not_in_creative_inventory = 1 },
|
||||
groups = { cracky = 3, not_in_creative_inventory = 1 },
|
||||
-- unaffected by explosions
|
||||
on_blast = function() end,
|
||||
})
|
||||
|
@@ -13,7 +13,7 @@ CC BY-SA 3.0
|
||||
|
||||
Version
|
||||
=======
|
||||
0.1.28
|
||||
0.1.29
|
||||
|
||||
|
||||
Minetest Version
|
||||
|
Reference in New Issue
Block a user