diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-16 00:32:34 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:13:45 +0200 |
commit | 28fe2987a0ddd9746fb9bbd52c97bf1e7e586f70 (patch) | |
tree | 1a076b6fbb831bd0877642ce373fbfb51bc68ad5 /src | |
parent | 26abf6fd822c3791d60995db57c6f2ae29599b82 (diff) | |
download | minetest-28fe2987a0ddd9746fb9bbd52c97bf1e7e586f70.tar.gz minetest-28fe2987a0ddd9746fb9bbd52c97bf1e7e586f70.tar.bz2 minetest-28fe2987a0ddd9746fb9bbd52c97bf1e7e586f70.zip |
Saner sized sapling
Diffstat (limited to 'src')
-rw-r--r-- | src/content_mapnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_mapnode.cpp b/src/content_mapnode.cpp index 2fce337fc..c33d8c4a2 100644 --- a/src/content_mapnode.cpp +++ b/src/content_mapnode.cpp @@ -637,7 +637,7 @@ void content_mapnode_init(IWritableNodeDefManager *nodemgr) i = CONTENT_SAPLING; f = nodemgr->getModifiable(i); f->drawtype = NDT_PLANTLIKE; - f->visual_scale = 1.5; + f->visual_scale = 1.0; f->setAllTextures("sapling.png"); f->setInventoryTexture("sapling.png"); f->param_type = CPT_LIGHT; |