* Fix edit scale command - was looking for one too few arguments

This commit is contained in:
Justin Clarke Casey
2009-03-24 19:04:28 +00:00
parent c7d0e4ffc1
commit 5e9682cef7

View File

@@ -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);
}