From 5e9682cef72f7bf89832427b710e34d25e2ec167 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 24 Mar 2009 19:04:28 +0000 Subject: * Fix edit scale command - was looking for one too few arguments --- OpenSim/Region/Application/OpenSim.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index d8a9b4c..898aad2 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -389,7 +389,7 @@ namespace OpenSim private void HandleEditScale(string module, string[] args) { - if (args.Length == 5) + if (args.Length == 6) { m_sceneManager.HandleEditCommandOnCurrentScene(args); } -- cgit v1.1