Rename wool mod to mcl_wool

This commit is contained in:
Wuzzy 2017-01-30 15:25:24 +01:00
parent bd436aa9b0
commit fe283986ba
25 changed files with 16 additions and 16 deletions

View file

@ -26,7 +26,7 @@ mobs:register_mob("mobs_mc:sheep", {
chance = 1,
min = 1,
max = 2,},
{name = "wool:white",
{name = "mcl_wool:white",
chance = 1,
min = 1,
max = 1,},
@ -90,9 +90,9 @@ mobs:register_mob("mobs_mc:sheep", {
minetest.sound_play("shears", {pos = pos})
pos.y = pos.y + 0.5
if not self.color then
minetest.add_item(pos, ItemStack("wool:white "..math.random(1,3)))
minetest.add_item(pos, ItemStack("mcl_wool:white "..math.random(1,3)))
else
minetest.add_item(pos, ItemStack("wool:"..self.color.." "..math.random(1,3)))
minetest.add_item(pos, ItemStack("mcl_wool:"..self.color.." "..math.random(1,3)))
end
self.object:set_properties({
textures = {"sheep_sheared.png"},
@ -116,7 +116,7 @@ print(item:get_name(), minetest.get_item_group(item:get_name(), "dye"))
chance = 1,
min = 1,
max = 2,},
{name = "wool:"..self.color,
{name = "mcl_wool:"..self.color,
chance = 1,
min = 1,
max = 1,},

View file

@ -126,7 +126,7 @@ mobs:register_mob("mobs_mc:villager", {
{"mobs:rotten_flesh 40", "default:clay_lump 1"},
{"default:gold_ingot 10", "default:clay_lump 1"},
{"farming:cotton 10", "default:clay_lump 1"},
{"wool:white 15", "default:clay_lump 1"},
{"mcl_wool:white 15", "default:clay_lump 1"},
{"farming:pumpkin 8", "default:clay_lump 1"},
{"default:clay_lump 1", "mobs:beef_cooked 5"},