summaryrefslogtreecommitdiff
path: root/compat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'compat.lua')
-rw-r--r--compat.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat.lua b/compat.lua
index a1c1d45..21a5efc 100644
--- a/compat.lua
+++ b/compat.lua
@@ -116,12 +116,12 @@ minetest.override_item("default:chest_locked", {
groups = {choppy = 2, oddly_breakable_by_hand = 2, tubedevice = 1, tubedevice_receiver = 1},
tube = {
insert_object = function(pos, node, stack, direction)
- local meta = minetest.env:get_meta(pos)
+ local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
return inv:add_item("main", stack)
end,
can_insert = function(pos, node, stack, direction)
- local meta = minetest.env:get_meta(pos)
+ local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
return inv:room_for_item("main", stack)
end,