mirror of
https://github.com/APercy/airutils.git
synced 2025-03-15 08:01:22 +00:00
comments
This commit is contained in:
parent
3b8790bd94
commit
79a41bc86e
1 changed files with 4 additions and 0 deletions
4
init.lua
4
init.lua
|
@ -62,6 +62,7 @@ airutils.selection_box = {
|
|||
airutils.groups_right = {snappy=2,choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}
|
||||
airutils.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}
|
||||
|
||||
-- PAPI node (default left)
|
||||
minetest.register_node("airutils:papi",{
|
||||
description = "PAPI",
|
||||
inventory_image = "papi.png",
|
||||
|
@ -108,6 +109,7 @@ minetest.register_node("airutils:papi",{
|
|||
end,
|
||||
})
|
||||
|
||||
-- PAPI right node
|
||||
minetest.register_node("airutils:papi_right",{
|
||||
description = "PAPI_right_side",
|
||||
tiles = {"airutils_black.png", "airutils_u_black.png", "airutils_white.png",
|
||||
|
@ -140,6 +142,8 @@ minetest.register_node("airutils:papi_right",{
|
|||
end,
|
||||
})
|
||||
|
||||
|
||||
-- PAPI craft
|
||||
minetest.register_craft({
|
||||
output = 'airutils:papi',
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Reference in a new issue