forked from VoxeLibre/VoxeLibre
Fix snow golems throwing no snowballs
This commit is contained in:
parent
bc7c88ee69
commit
269b7f0278
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue