mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 13:43:49 +02:00
cleanup return statement
This commit is contained in:
parent
28583ad2a2
commit
0b87df45b5
1 changed files with 1 additions and 5 deletions
|
@ -2414,11 +2414,7 @@ bool EntityItem::shouldSuppressLocationEdits() const {
|
|||
}
|
||||
|
||||
// if any of the ancestors are MyAvatar, suppress
|
||||
if (isChildOfMyAvatar()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return isChildOfMyAvatar();
|
||||
}
|
||||
|
||||
QList<EntityDynamicPointer> EntityItem::getActionsOfType(EntityDynamicType typeToGet) const {
|
||||
|
|
Loading…
Reference in a new issue