refactor: simplify EntityBase.IsDeleted property

This commit is contained in:
Justin Clark-Casey (justincc)
2011-08-24 22:34:26 +01:00
parent 21f1b68fdf
commit 6d4432f440
3 changed files with 5 additions and 10 deletions

View File

@@ -3809,7 +3809,7 @@ namespace OpenSim.Region.Framework.Scenes
List<AvatarAttachment> attachments = m_appearance.GetAttachments();
foreach (AvatarAttachment attach in attachments)
{
if (m_isDeleted)
if (IsDeleted)
return;
int p = attach.AttachPoint;