Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
9519eae026 |
@@ -91,3 +91,7 @@ v0.1.15
|
||||
|
||||
v0.1.16
|
||||
* Fixed piston interaction with non-walkable nodes.
|
||||
|
||||
|
||||
v0.1.17
|
||||
* Fixed unintended global variable in pistons.lua.
|
||||
|
2
init.lua
2
init.lua
@@ -1,4 +1,4 @@
|
||||
local version = "0.1.16"
|
||||
local version = "0.1.17"
|
||||
local mod_storage = minetest.get_mod_storage ()
|
||||
|
||||
|
||||
|
@@ -52,7 +52,7 @@ local function push_entities (pos, vec)
|
||||
if tnode.name == "air" then
|
||||
can_move = true
|
||||
else
|
||||
tdef = utils.find_item_def (tnode.name)
|
||||
local tdef = utils.find_item_def (tnode.name)
|
||||
|
||||
can_move = tdef and not tdef.walkable
|
||||
end
|
||||
|
@@ -13,7 +13,7 @@ CC BY-SA 3.0
|
||||
|
||||
Version
|
||||
=======
|
||||
0.1.16
|
||||
0.1.17
|
||||
|
||||
|
||||
Minetest Version
|
||||
|
Reference in New Issue
Block a user