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

This commit is contained in:
Kevin Cozens
2017-01-07 16:16:27 -05:00
parent 6a0253dc90
commit 602fd99187
@@ -613,7 +613,7 @@ namespace OpenSimProfile.Modules.OpenProfile
public void AvatarNotesUpdate(IClientAPI remoteClient, UUID queryTargetID, string queryNotes)
{
ScenePresence p = FindPresence(queryTargetID);
if (p != null && p.isNPC)
if (p != null && p.IsNPC)
{
remoteClient.SendAgentAlertMessage(
"Notes for NPCs not available", false);