Forbid object:attach(obj, ...) (#9762)

Fixes #9761
This commit is contained in:
Loïc Blot 2020-04-27 11:27:27 +02:00 committed by GitHub
parent be71e70a91
commit 91c4f7f0ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -674,8 +674,13 @@ int ObjectRef::l_set_attach(lua_State *L)
ServerActiveObject *parent = getobject(parent_ref);
if (co == NULL)
return 0;
if (parent == NULL)
return 0;
if (co == parent)
throw LuaError("ObjectRef::set_attach: attaching object to itself is not allowed.");
// Do it
int parent_id = 0;
std::string bone;