diff options
author | Justin Clark-Casey (justincc) | 2014-04-30 19:41:11 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-04-30 19:41:11 +0100 |
commit | 7bb673a8543cd5fdf719b476e6b4f92055bf5b40 (patch) | |
tree | e704c921425347fe5ed81d16ab172c1516f09c36 | |
parent | minor: Print output in response to terrain console commands on the console ra... (diff) | |
download | opensim-SC-7bb673a8543cd5fdf719b476e6b4f92055bf5b40.zip opensim-SC-7bb673a8543cd5fdf719b476e6b4f92055bf5b40.tar.gz opensim-SC-7bb673a8543cd5fdf719b476e6b4f92055bf5b40.tar.bz2 opensim-SC-7bb673a8543cd5fdf719b476e6b4f92055bf5b40.tar.xz |
minor: Correct mistake in terrain flip error message from previous commit 5d01a1f
-rw-r--r-- | OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs index b14b0e0..6e1e8d6 100644 --- a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs +++ b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs | |||
@@ -1082,7 +1082,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain | |||
1082 | } | 1082 | } |
1083 | else | 1083 | else |
1084 | { | 1084 | { |
1085 | MainConsole.Instance.OutputFormat("ERROR: Unrecognised direction {0} - need or y", direction); | 1085 | MainConsole.Instance.OutputFormat("ERROR: Unrecognised direction {0} - need x or y", direction); |
1086 | } | 1086 | } |
1087 | } | 1087 | } |
1088 | 1088 | ||