From 4684781a442847e00a62aaedd4fbd8e9f008a341 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Sun, 9 Sep 2012 00:18:07 +0400 Subject: [PATCH] Removed obsolete palette; fixed some descriptions. --- crafts.lua | 4 ++-- init.lua | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/crafts.lua b/crafts.lua index dbc5ec4..afeffae 100644 --- a/crafts.lua +++ b/crafts.lua @@ -14,13 +14,13 @@ minetest.register_craft({ { 'default:stick','', 'default:stick' }, }}) -minetest.register_craft({ +--[[minetest.register_craft({ output = 'painting:palette 1', recipe = { { 'group:dye', 'group:dye', 'group:dye' }, { 'group:dye', '', 'group:dye' }, { 'group:dye', 'group:dye', 'group:dye' }, - }}) + }})]] minetest.register_craft({ output = 'painting:canvas_16 1', diff --git a/init.lua b/init.lua index 72da31a..3ac8af4 100644 --- a/init.lua +++ b/init.lua @@ -31,7 +31,7 @@ picbox = { } picnode = { - description = "pic", + description = "Picture", tiles = { "white.png" }, inventory_image = "painted.png", drawtype = "nodebox", @@ -143,6 +143,7 @@ paintent = { --paintedcanvas picture inventory item paintedcanvas = { + description = "Painted Canvas", inventory_image = "painted.png", stack_max = 1, @@ -182,6 +183,7 @@ paintedcanvas = { --canvas inventory item canvas = { + description = "Canvas", inventory_image = "default_paper.png", stack_max = 99, } @@ -193,7 +195,7 @@ canvasbox = { } canvasnode = { - description = "canvas", + description = "Canvas", tiles = { "white.png" }, inventory_image = "painted.png", drawtype = "nodebox", @@ -242,7 +244,7 @@ easelbox = { } easel = { - description = "easel", + description = "Easel", tiles = { "default_wood.png" }, drawtype = "nodebox", sunlight_propagates = true,