diff options
author | Oren Hurvitz | 2014-07-08 12:49:58 +0300 |
---|---|---|
committer | Justin Clark-Casey | 2014-08-02 00:56:37 +0100 |
commit | e16403db80da7189eb534d5c3e06a6ca03570d4e (patch) | |
tree | ebd32ea38a89c9d63621870cb2f84e34bb41fa70 | |
parent | Removed warning about YieldProlog (diff) | |
download | opensim-SC_OLD-e16403db80da7189eb534d5c3e06a6ca03570d4e.zip opensim-SC_OLD-e16403db80da7189eb534d5c3e06a6ca03570d4e.tar.gz opensim-SC_OLD-e16403db80da7189eb534d5c3e06a6ca03570d4e.tar.bz2 opensim-SC_OLD-e16403db80da7189eb534d5c3e06a6ca03570d4e.tar.xz |
Minor: changed "existant" to "existent"
-rw-r--r-- | OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs index 995e297..04e02c7 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs | |||
@@ -1029,7 +1029,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
1029 | block.X = (ushort)minX; | 1029 | block.X = (ushort)minX; |
1030 | block.Y = (ushort)minY; | 1030 | block.Y = (ushort)minY; |
1031 | block.Access = (byte)SimAccess.Down; // means 'simulator is offline' | 1031 | block.Access = (byte)SimAccess.Down; // means 'simulator is offline' |
1032 | // block.Access = (byte)SimAccess.NonExistant; | 1032 | // block.Access = (byte)SimAccess.NonExistent; |
1033 | response.Add(block); | 1033 | response.Add(block); |
1034 | } | 1034 | } |
1035 | // The lower 16 bits are an unsigned int16 | 1035 | // The lower 16 bits are an unsigned int16 |
@@ -1438,7 +1438,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
1438 | 1438 | ||
1439 | public void GenerateMaptile() | 1439 | public void GenerateMaptile() |
1440 | { | 1440 | { |
1441 | // Cannot create a map for a nonexistant heightmap | 1441 | // Cannot create a map for a nonexistent heightmap |
1442 | if (m_scene.Heightmap == null) | 1442 | if (m_scene.Heightmap == null) |
1443 | return; | 1443 | return; |
1444 | 1444 | ||
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 1fdcfd2..3678c7e 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1906,7 +1906,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1906 | if (original == null) | 1906 | if (original == null) |
1907 | { | 1907 | { |
1908 | m_log.WarnFormat( | 1908 | m_log.WarnFormat( |
1909 | "[SCENEGRAPH]: Attempt to duplicate nonexistant prim id {0} by {1}", originalPrimID, AgentID); | 1909 | "[SCENEGRAPH]: Attempt to duplicate nonexistent prim id {0} by {1}", originalPrimID, AgentID); |
1910 | 1910 | ||
1911 | return null; | 1911 | return null; |
1912 | } | 1912 | } |