From: ANAND Date: Sun, 7 Apr 2019 10:00:57 +0000 (+0530) Subject: Add deprecation warnings for ObjectRef:get/set_attribute (#8443) X-Git-Tag: 5.1.0~251 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3deaa7cf57f174a224b433710429b7a9abdbce71;p=oweals%2Fminetest.git Add deprecation warnings for ObjectRef:get/set_attribute (#8443) --- diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp index b3ed39c7c..597cb84a8 100644 --- a/src/script/lua_api/l_object.cpp +++ b/src/script/lua_api/l_object.cpp @@ -1239,6 +1239,9 @@ int ObjectRef::l_get_breath(lua_State *L) // set_attribute(self, attribute, value) int ObjectRef::l_set_attribute(lua_State *L) { + log_deprecated(L, + "Deprecated call to set_attribute, use MetaDataRef methods instead."); + ObjectRef *ref = checkobject(L, 1); PlayerSAO* co = getplayersao(ref); if (co == NULL) @@ -1257,6 +1260,9 @@ int ObjectRef::l_set_attribute(lua_State *L) // get_attribute(self, attribute) int ObjectRef::l_get_attribute(lua_State *L) { + log_deprecated(L, + "Deprecated call to get_attribute, use MetaDataRef methods instead."); + ObjectRef *ref = checkobject(L, 1); PlayerSAO* co = getplayersao(ref); if (co == NULL)