1
0
鏡像自 https://codeberg.org/tenplus1/mobs_monster.git 已同步 2025-11-06 02:05:36 +01:00

fix obsidian flan arrow

此提交包含在:
tenplus1
2023-12-04 07:49:50 +00:00
父節點 a1030bf7d5
當前提交 130f46c81f

查看文件

@@ -309,12 +309,11 @@ mobs:register_arrow("mobs_monster:obsidian_arrow", {
end end
local texture = "default_dirt.png" --fallback texture local texture = "default_dirt.png" --fallback texture
local radius = 1 local radius = 1
local def = minetest.registered_nodes[node] local def = node and minetest.registered_nodes[node.name]
if def then if not def then
node = {name = node} return
end end
if def and def.tiles and def.tiles[1] then if def and def.tiles and def.tiles[1] then
@@ -350,6 +349,6 @@ mobs:register_arrow("mobs_monster:obsidian_arrow", {
local snd = def.sounds and def.sounds.dug or "default_dig_crumbly" local snd = def.sounds and def.sounds.dug or "default_dig_crumbly"
minetest.sound_play(snd, {pos = pos, max_hear_distance = 12, gain = 1.0}, true) minetest.sound_play(snd, {pos = pos, max_hear_distance = 8, gain = 1.0}, true)
end end
}) })