mirror of
https://github.com/minetest-mods/drawers.git
synced 2024-11-08 07:53:44 +01:00
Change descriptions to use plural for 2x2 drawers
This commit is contained in:
parent
ad3bbe8664
commit
f1156cc1da
2
init.lua
2
init.lua
@ -58,7 +58,7 @@ dofile(modpath .. "/lua/api.lua")
|
||||
--
|
||||
|
||||
drawers.register_drawer("drawers:wood", {
|
||||
description = "Wooden Drawer",
|
||||
description = "Wooden",
|
||||
tiles1 = {"drawers_wood.png", "drawers_wood.png", "drawers_wood.png",
|
||||
"drawers_wood.png", "drawers_wood.png", "drawers_wood_front_1.png"},
|
||||
tiles4 = {"drawers_wood.png", "drawers_wood.png", "drawers_wood.png",
|
||||
|
@ -120,7 +120,7 @@ function drawers.drawer_insert_object(pos, node, stack, direction)
|
||||
end
|
||||
|
||||
function drawers.register_drawer(name, def)
|
||||
def.description = def.description or "Drawer"
|
||||
def.description = def.description or "Wooden"
|
||||
def.drawtype = "nodebox"
|
||||
def.node_box = {type = "fixed", fixed = drawers.node_box_simple}
|
||||
def.collision_box = {type = "regular"}
|
||||
@ -154,6 +154,7 @@ function drawers.register_drawer(name, def)
|
||||
|
||||
-- normal drawer 1x1 = 1
|
||||
def1 = table.copy(def)
|
||||
def1.description = def.description .. " Drawer"
|
||||
def1.tiles = def.tiles or def.tiles1
|
||||
def1.tiles1 = nil
|
||||
def1.tiles4 = nil
|
||||
@ -163,7 +164,7 @@ function drawers.register_drawer(name, def)
|
||||
|
||||
-- 2x2 = 4
|
||||
def4 = table.copy(def)
|
||||
def4.description = def4.description .. " (2x2)"
|
||||
def4.description = def.description .. " Drawers (2x2)"
|
||||
def4.tiles = def.tiles4
|
||||
def4.tiles1 = nil
|
||||
def4.tiles4 = nil
|
||||
|
Loading…
Reference in New Issue
Block a user