summaryrefslogtreecommitdiff
path: root/src/inventory.cpp
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-01 04:57:46 +0200
committerNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-01 04:57:46 +0200
commitba1460a5822d38dc6617717fa5fec9b033bb0a29 (patch)
tree56bfb087a67005604136899d8280096e45d8fbe5 /src/inventory.cpp
parentd7b768dc4b94786474c35a6ae7ea2000d7e11626 (diff)
downloadminetest-ba1460a5822d38dc6617717fa5fec9b033bb0a29.tar.gz
minetest-ba1460a5822d38dc6617717fa5fec9b033bb0a29.tar.bz2
minetest-ba1460a5822d38dc6617717fa5fec9b033bb0a29.zip
+ clay and associated items
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r--src/inventory.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
index 47a8d4de9..3f83c7419 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -160,8 +160,12 @@ video::ITexture * CraftItem::getImage()
name = "lump_of_coal.png";
else if(m_subname == "lump_of_iron")
name = "lump_of_iron.png";
+ else if(m_subname == "lump_of_clay")
+ name = "lump_of_clay.png";
else if(m_subname == "steel_ingot")
name = "steel_ingot.png";
+ else if(m_subname == "clay_brick")
+ name = "clay_brick.png";
else if(m_subname == "rat")
name = "rat.png";
else
@@ -199,7 +203,7 @@ u16 CraftItem::getDropCount()
bool CraftItem::isCookable()
{
- if(m_subname == "lump_of_iron")
+ if(m_subname == "lump_of_iron" || m_subname == "lump_of_clay")
{
return true;
}
@@ -212,6 +216,8 @@ InventoryItem *CraftItem::createCookResult()
{
return new CraftItem("steel_ingot", 1);
}
+ else if(m_subname == "lump_of_clay")
+ return new CraftItem("clay_brick", 1);
return NULL;
}