forked from VoxeLibre/VoxeLibre
Fix silverfish typo
This commit is contained in:
parent
f5cc2bab09
commit
26ef8c2674
|
@ -461,7 +461,7 @@ function mobs:spawn_specific(name, dimension, type_of_spawning, biomes, min_ligh
|
||||||
end
|
end
|
||||||
|
|
||||||
for y = min_height, max_height do
|
for y = min_height, max_height do
|
||||||
--print(y)
|
print(y)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -24,22 +24,13 @@ mobs:register_mob("mobs_mc:silverfish", {
|
||||||
pathfinding = 1,
|
pathfinding = 1,
|
||||||
visual_size = {x=3, y=3},
|
visual_size = {x=3, y=3},
|
||||||
sounds = {"FlowerForest",
|
sounds = {"FlowerForest",
|
||||||
"Swampland",
|
sounds = {
|
||||||
"Taiga",
|
random = "mobs_mc_silverfish_idle",
|
||||||
"ExtremeHills",
|
death = "mobs_mc_silverfish_death",
|
||||||
"BirchForest",
|
damage = "mobs_mc_silverfish_hurt",
|
||||||
"MegaSpruceTaiga",
|
distance = 16,
|
||||||
"MegaTaiga",
|
|
||||||
"ExtremeHills+",
|
|
||||||
"Forest",
|
|
||||||
"Plains",
|
|
||||||
"ColdTaiga",
|
|
||||||
"SunflowerPlains",
|
|
||||||
"RoofedForest",
|
|
||||||
"MesaPlateauFM_grasstop",
|
|
||||||
"ExtremeHillsM",
|
|
||||||
"BirchForestM",
|
|
||||||
},
|
},
|
||||||
|
makes_footstep_sound = false,
|
||||||
walk_velocity = 0.6,
|
walk_velocity = 0.6,
|
||||||
run_velocity = 2,
|
run_velocity = 2,
|
||||||
jump = true,
|
jump = true,
|
||||||
|
|
Loading…
Reference in New Issue