Remove minetest.env in mcl_mobspawners

This commit is contained in:
Wuzzy 2017-07-06 15:23:16 +02:00
parent 42d377047f
commit 1814fe5ea5
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ local function get_mob_textures(mob)
end
local function find_doll(pos)
for _,obj in ipairs(minetest.env:get_objects_inside_radius(pos, 1)) do
for _,obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
if not obj:is_player() then
if obj ~= nil and obj:get_luaentity().name == "mcl_mobspawners:doll" then
return obj