From 69ddb61a7e607eefc8126aad2b19f9ea71c2030c Mon Sep 17 00:00:00 2001 From: Guy Liner Date: Mon, 3 Jan 2022 20:12:59 -0500 Subject: [PATCH] Fixed a typo --- mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua b/mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua index 5c431135e..5d790fc94 100644 --- a/mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua +++ b/mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua @@ -202,7 +202,7 @@ mobs.node_ok = function(pos, fallback) end ---a teleport functoin +--a teleport function mobs.teleport = function(self, target) if self.do_teleport then if self.do_teleport(self, target) == false then @@ -247,4 +247,4 @@ mobs.calculate_fall_damage = function(self) self.health = self.health - damage end end -end \ No newline at end of file +end