Change improperly named isNPC to be IsNPC as a property should be uppercase

This commit is contained in:
Melanie Thielker
2017-01-07 20:30:51 +00:00
parent c41616b771
commit 6d44ee9099
11 changed files with 27 additions and 27 deletions

View File

@@ -56,7 +56,7 @@ namespace OpenSim.Framework
bool IsChildAgent { get; }
bool IsInTransit { get; }
bool isNPC { get;}
bool IsNPC { get;}
bool Invulnerable { get; set; }
/// <summary>
@@ -83,4 +83,4 @@ namespace OpenSim.Framework
/// <remarks>Will be Vector3.Zero for a child agent.</remarks>
Vector3 Lookat { get; }
}
}
}