mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
fix a vector range parsing
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user