mirror of
https://github.com/sirrobzeroone/elepower.git
synced 2024-11-14 02:53:44 +01:00
9 lines
333 B
Lua
9 lines
333 B
Lua
-- Nodes other than machines.
|
|
-- Machines are registered in `register.lua`!
|
|
|
|
minetest.register_node("elepower_machines:machine_block", {
|
|
description = "Machine Block",
|
|
tiles = {"elepower_machine_top.png", "elepower_machine_base.png", "elepower_machine_side.png"},
|
|
groups = {oddly_breakable_by_hand = 1, cracky = 1},
|
|
})
|