mineclone compatibility fixes

This commit is contained in:
FaceDeer 2023-02-14 20:46:42 -07:00
parent cf89421748
commit c446bd66d4
2 changed files with 2 additions and 3 deletions

View File

@ -172,7 +172,7 @@ minetest.register_node("bubblesponge:frond", {
walkable = false,
buildable_to = true,
groups = {snappy=3, oddly_breakable_by_hand = 1, handy = 1, not_in_creatove_inventory=1},
sounds = default.node_sound_leaves_defaults(),
sounds = df_dependencies.sound_leaves(),
drop = "bubblesponge:tank",
})

View File

@ -244,7 +244,6 @@ minetest.register_craftitem("collectible_lore:satchel", {
_doc_items_longdesc = S("A satchel containing various documents you've recovered in your travels."),
_doc_items_usagehelp = S("The documents and lore you've unlocked are not tied to a specific satchel, any satchel will let you view your personal collection."),
inventory_image = "collectible_lore_satchel.png",
stack_max = 99,
on_use = function(itemstack, user, pointed_thing)
local player_name = user:get_player_name()
minetest.show_formspec(player_name, "collectible_lore:formspec", get_formspec_for_player(player_name))