Update init.lua

This commit is contained in:
ElCeejo 2020-11-25 00:29:47 -08:00 committed by GitHub
parent 64df895467
commit 8fa018fcb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,12 @@ minetest.register_on_mods_loaded(function()
end
end)
better_fauna.frame_blend = 0
if minetest.has_feature("object_step_has_moveresult") then
better_fauna.frame_blend = 0.3
end
local path = minetest.get_modpath("better_fauna")
dofile(path.."/api/api.lua")
@ -20,6 +26,7 @@ dofile(path.."/mobs/chicken.lua")
dofile(path.."/mobs/cow.lua")
dofile(path.."/mobs/pig.lua")
dofile(path.."/mobs/sheep.lua")
dofile(path.."/mobs/turkey.lua")
minetest.log("action", "[MOD] Better Fauna [0.1] loaded")