mirror of
https://codeberg.org/tenplus1/mobs_animal.git
synced 2024-12-22 17:00:26 +01:00
can only shear your own sheep
This commit is contained in:
parent
284021ebb7
commit
468f459fb6
@ -94,12 +94,14 @@ stepheight = 0.6,
|
|||||||
|
|
||||||
local item = clicker:get_wielded_item()
|
local item = clicker:get_wielded_item()
|
||||||
local itemname = item:get_name()
|
local itemname = item:get_name()
|
||||||
|
local name = clicker:get_player_name()
|
||||||
|
|
||||||
--are we giving a haircut>
|
--are we giving a haircut>
|
||||||
if itemname == "mobs:shears" then
|
if itemname == "mobs:shears" then
|
||||||
|
|
||||||
if self.gotten ~= false
|
if self.gotten ~= false
|
||||||
or self.child ~= false
|
or self.child ~= false
|
||||||
|
or name ~= self.owner
|
||||||
or not minetest.get_modpath("wool") then
|
or not minetest.get_modpath("wool") then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -132,8 +134,6 @@ stepheight = 0.6,
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local name = clicker:get_player_name()
|
|
||||||
|
|
||||||
--are we coloring?
|
--are we coloring?
|
||||||
if itemname:find("dye:") then
|
if itemname:find("dye:") then
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user