automatic update

This commit is contained in:
HybridDog 2015-04-16 20:42:17 +02:00
parent 2e0548ebc5
commit 36a49cc3be
1 changed files with 9 additions and 13 deletions

View File

@ -213,9 +213,7 @@ minetest.register_node("connected_chests:chest_right", {
paramtype2 = "facedir",
drop = "",
pointable = false,
can_dig = function()
return false
end,
diggable = false,
})
minetest.register_node("connected_chests:chest_locked_right", {
@ -224,9 +222,7 @@ minetest.register_node("connected_chests:chest_locked_right", {
paramtype2 = "facedir",
drop = "",
pointable = false,
can_dig = function()
return false
end,
diggable = false,
})
for _,i in pairs({"chest", "chest_locked"}) do
@ -257,7 +253,7 @@ for _,i in pairs({"chest", "chest_locked"}) do
end
local time = math.floor(tonumber(os.clock()-load_time_start)*100+0.5)/100
local msg = "[] loaded after ca. "..time
local msg = "[connected_chests] loaded after ca. "..time
if time > 0.05 then
print(msg)
else