mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 23:31:05 +01:00
Shulker: make bullet speed match mc
speed is 5 according to https://www.gmbinder.com/share/-MelLRYIg8yCfuAqQ82g#:~:text=After%20doing%20some%20experimentation%20I,~5%20blocks%2Fsecond).
This commit is contained in:
parent
cf51c60527
commit
789c9a9a6d
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ mcl_mobs.register_arrow("mobs_mc:shulkerbullet", {
|
||||||
visual = "sprite",
|
visual = "sprite",
|
||||||
visual_size = {x = 0.25, y = 0.25},
|
visual_size = {x = 0.25, y = 0.25},
|
||||||
textures = {"mobs_mc_shulkerbullet.png"},
|
textures = {"mobs_mc_shulkerbullet.png"},
|
||||||
velocity = 6,
|
velocity = 5,
|
||||||
homing = true,
|
homing = true,
|
||||||
hit_player = mcl_mobs.get_arrow_damage_func(4),
|
hit_player = mcl_mobs.get_arrow_damage_func(4),
|
||||||
hit_mob = mcl_mobs.get_arrow_damage_func(4),
|
hit_mob = mcl_mobs.get_arrow_damage_func(4),
|
||||||
|
|
Loading…
Reference in a new issue