summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-12-01 13:01:37 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-12-01 13:01:37 +0200
commit0e113a4c811e8772924a7f0a842d448e196a3d8f (patch)
tree9a3f1b64e0ca774bedaf28d818c8a948e8fcaa47 /src
parent1da3a8e24b3366179ff50c4bae170dec8bed0475 (diff)
downloadminetest-0e113a4c811e8772924a7f0a842d448e196a3d8f.tar.gz
minetest-0e113a4c811e8772924a7f0a842d448e196a3d8f.tar.bz2
minetest-0e113a4c811e8772924a7f0a842d448e196a3d8f.zip
Remove +"^[forcesingle" from ContentFeatures::setInventoryTexture, because 1) it was not used, 2) if it will be used, it won't need to do that anymore
Diffstat (limited to 'src')
-rw-r--r--src/nodedef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodedef.cpp b/src/nodedef.cpp
index 8506d95aa..f8420c22c 100644
--- a/src/nodedef.cpp
+++ b/src/nodedef.cpp
@@ -281,7 +281,7 @@ void ContentFeatures::setSpecialMaterial(u16 i, const MaterialSpec &mspec)
void ContentFeatures::setInventoryTexture(std::string imgname)
{
- tname_inventory = imgname + "^[forcesingle";
+ tname_inventory = imgname;
}
void ContentFeatures::setInventoryTextureCube(std::string top,