fix a vector range parsing

This commit is contained in:
UbitUmarov
2016-11-14 22:08:39 +00:00
parent e304acb06f
commit a858804b42

View File

@@ -920,7 +920,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
return false;
}
string rawConsoleEndVector = rawComponents.Skip(2).Take(1).Single();
string rawConsoleEndVector = rawComponents.Skip(1).Take(1).Single();
if (!ConsoleUtil.TryParseConsoleMaxVector(rawConsoleEndVector, out endVector))
{