summaryrefslogtreecommitdiff
path: root/rat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rat.lua')
-rw-r--r--rat.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/rat.lua b/rat.lua
index 750d0df..a468524 100644
--- a/rat.lua
+++ b/rat.lua
@@ -30,9 +30,17 @@ mobs:register_mob("mobs_animal:rat", {
mobs:capture_mob(self, clicker, 25, 80, 0, true, nil)
end,
--[[
- do_custom = function(self)
+ do_custom = function(self, dtime)
+
+ self.rat_timer = (self.rat_timer or 0) + dtime
+
+ if self.rat_timer < 1 then return end -- every 1 second
+
+ self.rat_timer = 0
+
local pos = self.object:getpos()
- print("rat pos", pos.x, pos.y, pos.z)
+
+ print("rat pos", pos.x, pos.y, pos.z, dtime)
end,
]]
--[[