forked from VoxeLibre/VoxeLibre
Fix dispenser's bucket support in the Nether
This commit is contained in:
parent
3a18f4044d
commit
bd74902789
|
@ -2,6 +2,9 @@ mcl_init
|
|||
mesecons
|
||||
mcl_sounds
|
||||
mcl_tnt
|
||||
mcl_util
|
||||
mcl_core
|
||||
mcl_nether
|
||||
3d_armor_stand
|
||||
3d_armor
|
||||
doc?
|
||||
|
|
|
@ -145,7 +145,7 @@ local dispenserdef = {
|
|||
if dropnode.name == "mcl_core:water_source" then
|
||||
collect_liquid = true
|
||||
bucket_id = "mcl_buckets:bucket_water"
|
||||
elseif dropnode.name == "mcl_core:lava_source" then
|
||||
elseif dropnode.name == "mcl_core:lava_source" or dropnode.name == "mcl_nether:nether_lava_source" then
|
||||
collect_liquid = true
|
||||
bucket_id = "mcl_buckets:bucket_lava"
|
||||
end
|
||||
|
@ -173,11 +173,20 @@ local dispenserdef = {
|
|||
elseif iname == "mcl_buckets:bucket_water" or iname == "mcl_buckets:bucket_lava" then
|
||||
-- Place water/lava source
|
||||
if dropnodedef.buildable_to then
|
||||
local _, dim = mcl_util.y_to_layer(droppos.y)
|
||||
if iname == "mcl_buckets:bucket_water" then
|
||||
if dim == "nether" then
|
||||
minetest.sound_play("fire_extinguish_flame", {pos = droppos, gain = 0.25, max_hear_distance = 16})
|
||||
else
|
||||
minetest.set_node(droppos, {name = "mcl_core:water_source"})
|
||||
end
|
||||
elseif iname == "mcl_buckets:bucket_lava" then
|
||||
if dim == "nether" then
|
||||
minetest.set_node(droppos, {name = "mcl_nether:nether_lava_source"})
|
||||
else
|
||||
minetest.set_node(droppos, {name = "mcl_core:lava_source"})
|
||||
end
|
||||
end
|
||||
|
||||
stack:take_item()
|
||||
inv:set_stack("main", stack_id, stack)
|
||||
|
|
Loading…
Reference in New Issue