From 1dc482f82aa7f6a68c567b37c8aaf5de9c296367 Mon Sep 17 00:00:00 2001 From: theFox6 Date: Sun, 20 May 2018 13:47:13 +0200 Subject: [PATCH] fixed goto_sleep --- async_actions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async_actions.lua b/async_actions.lua index 6d481fd..c6e6682 100644 --- a/async_actions.lua +++ b/async_actions.lua @@ -130,7 +130,7 @@ function working_villages.villager:goto_bed() if working_villages.debug_logging then minetest.log("info","his bed is at:" .. self.destination.x .. ",".. self.destination.y .. ",".. self.destination.z) end - self:goto(bed_pos) + self:go_to(bed_pos) self:sleep() end end