summaryrefslogtreecommitdiff
path: root/src/luaentity_common.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-11-12 18:34:04 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-11-29 19:13:40 +0200
commit7b802c547dc23b022605bc7b934c31461b47622b (patch)
treeb3032709929ca05a49f98f2ab3343ead1b139613 /src/luaentity_common.cpp
parent73bb3bc5958989db21eefb826e277dada248ceca (diff)
downloadminetest-7b802c547dc23b022605bc7b934c31461b47622b.tar.gz
minetest-7b802c547dc23b022605bc7b934c31461b47622b.tar.bz2
minetest-7b802c547dc23b022605bc7b934c31461b47622b.zip
Handle undefined objects better
Diffstat (limited to 'src/luaentity_common.cpp')
-rw-r--r--src/luaentity_common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luaentity_common.cpp b/src/luaentity_common.cpp
index 26cfce1c2..138e72dcb 100644
--- a/src/luaentity_common.cpp
+++ b/src/luaentity_common.cpp
@@ -29,7 +29,7 @@ LuaEntityProperties::LuaEntityProperties():
collisionbox(-0.5,-0.5,-0.5, 0.5,0.5,0.5),
visual("single_sprite")
{
- textures.push_back("unknown_block.png");
+ textures.push_back("unknown_object.png");
}
std::string LuaEntityProperties::dump()