summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax <baddevil@quantentunnel.de>2014-07-07 17:35:51 +0200
committerMax <baddevil@quantentunnel.de>2014-07-07 17:35:51 +0200
commit83609377c7d9d3d39639de493b5ed41cab706bc3 (patch)
treec679f20509f77782401ad797e14144118171aa2a
parenta0f84c3ae6bce5f287e07d4208b6eaac0cfbb17f (diff)
Fix for Minetest 0.4.10
doors mod in minetest_game got changed so doors:register_door(...) is broken
-rw-r--r--shared_door.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared_door.lua b/shared_door.lua
index ec9f8fb..8dc4abc 100644
--- a/shared_door.lua
+++ b/shared_door.lua
@@ -16,7 +16,7 @@ function landrush.on_rightclick(pos, dir, check_name, replace, replace_dir, para
minetest.get_meta(pos):from_table(meta)
end
-doors:register_door("landrush:shared_door", {
+doors.register_door("landrush:shared_door", {
description = "Shared Door",
inventory_image = "shared_door_inv.png",
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1},