summaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_object.cpp
diff options
context:
space:
mode:
authorsapier <sapier at gmx dot net>2017-01-17 19:41:52 +0100
committersapier <sapier at gmx dot net>2017-01-17 19:41:52 +0100
commit51746ca910f8bce0837a72110e47ec7de76d1c19 (patch)
treeb941ed2b6c6bf49204e449397d2ea96d55f1fc5f /src/script/lua_api/l_object.cpp
parentd218baa3ace1f40813a346543feeac2aa71c480c (diff)
downloadminetest-51746ca910f8bce0837a72110e47ec7de76d1c19.tar.gz
minetest-51746ca910f8bce0837a72110e47ec7de76d1c19.tar.bz2
minetest-51746ca910f8bce0837a72110e47ec7de76d1c19.zip
Fix typo in alias for deprecated settexturemod
Diffstat (limited to 'src/script/lua_api/l_object.cpp')
-rw-r--r--src/script/lua_api/l_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp
index dd29208c5..59c04f301 100644
--- a/src/script/lua_api/l_object.cpp
+++ b/src/script/lua_api/l_object.cpp
@@ -1806,7 +1806,7 @@ const luaL_reg ObjectRef::methods[] = {
luamethod_aliased(ObjectRef, get_acceleration, getacceleration),
luamethod_aliased(ObjectRef, set_yaw, setyaw),
luamethod_aliased(ObjectRef, get_yaw, getyaw),
- luamethod_aliased(ObjectRef, set_texture_mod, set_texturemod),
+ luamethod_aliased(ObjectRef, set_texture_mod, settexturemod),
luamethod_aliased(ObjectRef, set_sprite, setsprite),
luamethod(ObjectRef, get_entity_name),
luamethod(ObjectRef, get_luaentity),