Fix snow golems throwing no snowballs

This commit is contained in:
Wuzzy 2017-07-06 14:38:25 +02:00
parent bc7c88ee69
commit 269b7f0278
1 changed files with 34 additions and 32 deletions

View File

@ -300,11 +300,12 @@ if c("egg") then
})
end
if c("snowball") then
local snowball_GRAVITY = 9
local snowball_VELOCITY = 19
-- Snowball
mobs:register_arrow("mobs_mc:snowball_entity", {
local snowball_GRAVITY = 9
local snowball_VELOCITY = 19
mobs:register_arrow("mobs_mc:snowball_entity", {
visual = "sprite",
visual_size = {x=.5, y=.5},
textures = {"mcl_throwing_snowball.png"},
@ -331,8 +332,9 @@ if c("snowball") then
}, nil)
end,
})
})
if c("snowball") then
-- shoot snowball
local mobs_shoot_snowball = function (item, player, pointed_thing)