Merge pull request #5 from wuniversales/master

Added Mineclone compatibility + Spanish language
master
FaceDeer 2020-10-31 16:24:59 -06:00 committed by GitHub
commit fbc13a7566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 2 deletions

View File

@ -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
end

2
locale/bell.es.tr Normal file
View File

@ -0,0 +1,2 @@
Bell=Campana
Small bell=Campana pequeña

View File

@ -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
optional_depends = default, mcl_core, mcl_loot, mesecons, doc