Transform villager with on_lightning_strike

This commit is contained in:
cora 2022-11-04 14:02:59 +01:00
parent 95db6104e9
commit 2c4a768685
1 changed files with 4 additions and 0 deletions

View File

@ -1885,6 +1885,10 @@ mcl_mobs:register_mob("mobs_mc:villager", {
mcl_log("Died, so bye bye jobsite")
end
end,
on_lightning_strike = function(self, pos, pos2, objects)
mcl_util.replace_mob(self.object, "mobs_mc:witch")
return true
end,
})