Set cows drop rate of "animalmaterials:coat_cattle" to 100%

master
AntumDeluge 2017-03-30 15:40:44 -07:00
parent b53ccac163
commit 174da918df
1 changed files with 5 additions and 0 deletions

View File

@ -65,9 +65,14 @@ function cattle_drop()
table.insert(result,"animalmaterials:meat_beef 5")
end
--[[
if math.random() < 0.25 then
table.insert(result,"animalmaterials:coat_cattle 1")
end
]]--
-- 100% cow hide drop
table.insert(result,"animalmaterials:coat_cattle 1")
if math.random() < 0.1 then
table.insert(result,"animalmaterials:bone 1")