diff --git a/init.lua b/init.lua index b00f7e9..6903120 100644 --- a/init.lua +++ b/init.lua @@ -250,6 +250,14 @@ if minetest.settings:get_bool("bell_enable_model", true) then }, }, paramtype2 = "facedir", + drop = { + max_items = 1, + items = { + { + items = {"bell:bell"}, + }, + } + } } for k, v in pairs(bell_base) do @@ -280,6 +288,14 @@ if minetest.settings:get_bool("bell_enable_model", true) then }, }, paramtype2 = "facedir", + drop = { + max_items = 1, + items = { + { + items = {"bell:bell_small"}, + }, + } + } } for k, v in pairs(small_bell_base) do @@ -355,4 +371,4 @@ if minetest.get_modpath("mcl_core") then {"mcl_core:goldblock", "", "mcl_core:goldblock"}, }, }) -end \ No newline at end of file +end diff --git a/locale/bell.es.tr b/locale/bell.es.tr new file mode 100644 index 0000000..1561f97 --- /dev/null +++ b/locale/bell.es.tr @@ -0,0 +1,2 @@ +Bell=Campana +Small bell=Campana pequeña diff --git a/mod.conf b/mod.conf index d30c1ee..22767bc 100644 --- a/mod.conf +++ b/mod.conf @@ -1,3 +1,3 @@ name = bell description = Adds a bell the player can ring and a bell that auto-tolls on the hour. -optional_depends = default, mesecons \ No newline at end of file +optional_depends = default, mcl_core, mcl_loot, mesecons, doc