Correct casing on isGod and isViewerUIGod

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

View File

@@ -721,7 +721,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
ScenePresence sp = World.GetScenePresence(m_host.OwnerID);
if (sp == null || !sp.isViewerUIGod)
if (sp == null || !sp.IsViewerUIGod)
{
LSShoutError("lsSetWindlightScene can only be used by estate managers or owners.");
return 0;
@@ -768,7 +768,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
ScenePresence sp = World.GetScenePresence(m_host.OwnerID);
if (sp == null || !sp.isViewerUIGod)
if (sp == null || !sp.IsViewerUIGod)
{
LSShoutError("lsSetWindlightScene can only be used by estate managers or owners.");
return;
@@ -799,7 +799,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
ScenePresence sp = World.GetScenePresence(m_host.OwnerID);
if (sp == null || !sp.isViewerUIGod)
if (sp == null || !sp.IsViewerUIGod)
{
LSShoutError("lsSetWindlightSceneTargeted can only be used by estate managers or owners.");
return 0;