forked from VoxeLibre/VoxeLibre
Add a setting to enable mod nav hacks
This commit is contained in:
parent
6266516ea1
commit
720a73cce2
|
@ -4,6 +4,7 @@
|
||||||
--License for code WTFPL and otherwise stated in readmes
|
--License for code WTFPL and otherwise stated in readmes
|
||||||
|
|
||||||
local S = minetest.get_translator("mobs_mc")
|
local S = minetest.get_translator("mobs_mc")
|
||||||
|
local allow_nav_hacks = minetest.settings:get_bool("mcl_mob_allow_nav_hacks ",false)
|
||||||
|
|
||||||
--###################
|
--###################
|
||||||
--################### IRON GOLEM
|
--################### IRON GOLEM
|
||||||
|
@ -93,7 +94,7 @@ mcl_mobs.register_mob("mobs_mc:iron_golem", {
|
||||||
self.home_timer = 0
|
self.home_timer = 0
|
||||||
if self._home and self.state ~= "attack" then
|
if self._home and self.state ~= "attack" then
|
||||||
local dist = vector.distance(self._home,self.object:get_pos())
|
local dist = vector.distance(self._home,self.object:get_pos())
|
||||||
if dist >= tele_dist then
|
if allow_nav_hacks and dist >= tele_dist then
|
||||||
self.object:set_pos(self._home)
|
self.object:set_pos(self._home)
|
||||||
self.state = "stand"
|
self.state = "stand"
|
||||||
self.order = "follow"
|
self.order = "follow"
|
||||||
|
|
|
@ -173,6 +173,10 @@ mcl_mob_active_range (Active mob range) int 48 0 256
|
||||||
# Zombie siege raid (default:false)
|
# Zombie siege raid (default:false)
|
||||||
mcl_raids_zombie_siege (Zombie siege raid) bool false
|
mcl_raids_zombie_siege (Zombie siege raid) bool false
|
||||||
|
|
||||||
|
# Enable workarounds for faulty mob navigation.
|
||||||
|
# Hack 1: teleport golems home if they are very far from home
|
||||||
|
mcl_mob_allow_nav_hacks (Mob navigation hacks) bool false
|
||||||
|
|
||||||
[Audio]
|
[Audio]
|
||||||
# Enable flame sound.
|
# Enable flame sound.
|
||||||
flame_sound (Flame sound) bool true
|
flame_sound (Flame sound) bool true
|
||||||
|
|
Loading…
Reference in New Issue