forked from VoxeLibre/VoxeLibre
set profession first in on_spawn
This commit is contained in:
parent
86651e7557
commit
d9e40d5223
|
@ -1362,17 +1362,17 @@ mcl_mobs:register_mob("mobs_mc:villager", {
|
||||||
end,
|
end,
|
||||||
|
|
||||||
on_spawn = function(self)
|
on_spawn = function(self)
|
||||||
if self._id then
|
|
||||||
set_textures(self)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
self._id=minetest.sha1(minetest.get_gametime()..minetest.pos_to_string(self.object:get_pos())..tostring(math.random()))
|
|
||||||
if not self._profession then
|
if not self._profession then
|
||||||
self._profession = "unemployed"
|
self._profession = "unemployed"
|
||||||
if math.random(100) == 1 then
|
if math.random(100) == 1 then
|
||||||
self._profession = "nitwit"
|
self._profession = "nitwit"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if self._id then
|
||||||
|
set_textures(self)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
self._id=minetest.sha1(minetest.get_gametime()..minetest.pos_to_string(self.object:get_pos())..tostring(math.random()))
|
||||||
set_textures(self)
|
set_textures(self)
|
||||||
end,
|
end,
|
||||||
on_die = function(self, pos)
|
on_die = function(self, pos)
|
||||||
|
|
Loading…
Reference in New Issue