forked from VoxeLibre/VoxeLibre
Update 'mods/ITEMS/REDSTONE/mesecons_button/init.lua'
added in a Polished Blackstone Button
This commit is contained in:
parent
e3978c4d22
commit
a10235f330
|
@ -216,6 +216,18 @@ mesecon.register_button(
|
|||
S("A stone button is a redstone component made out of stone which can be pushed to provide redstone power. When pushed, it powers adjacent redstone components for 1 second."),
|
||||
"mesecons_button_push")
|
||||
|
||||
mesecon.register_button(
|
||||
"polished_blackstone",
|
||||
S("Polished Blackstone Button"),
|
||||
"mcl_blackstone_polished.png",
|
||||
"mcl_blackstone:blackstone_polished",
|
||||
mcl_sounds.node_sound_stone_defaults(),
|
||||
{material_stone=1,handy=1,pickaxey=1},
|
||||
1,
|
||||
false,
|
||||
S("A polished blackstone button is a redstone component made out of polished blackstone which can be pushed to provide redstone power. When pushed, it powers adjacent redstone components for 1 second."),
|
||||
"mesecons_button_push")
|
||||
|
||||
local woods = {
|
||||
{ "wood", "mcl_core:wood", "default_wood.png", S("Oak Button") },
|
||||
{ "acaciawood", "mcl_core:acaciawood", "default_acacia_wood.png", S("Acacia Button") },
|
||||
|
|
Loading…
Reference in New Issue