Merge pull request 'Make "old" villagers keep their job' (#2325) from fix_old_villagers_profession into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2325
Reviewed-by: MysticTempest <mystictempest@noreply.git.minetest.land>
This commit is contained in:
cora 2022-06-17 20:52:02 +00:00
commit 08d677d788
1 changed files with 5 additions and 3 deletions

View File

@ -1367,9 +1367,11 @@ mcl_mobs:register_mob("mobs_mc:villager", {
return
end
self._id=minetest.sha1(minetest.get_gametime()..minetest.pos_to_string(self.object:get_pos())..tostring(math.random()))
self._profession = "unemployed"
if math.random(100) == 1 then
self._profession = "nitwit"
if not self._profession then
self._profession = "unemployed"
if math.random(100) == 1 then
self._profession = "nitwit"
end
end
set_textures(self)
end,