Resolve mantis #572 - terrain help printed multiple times when change-region has not been invoked
parent
4cc5aac18b
commit
cf9c0135b1
|
@ -187,6 +187,12 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
{
|
{
|
||||||
success = false;
|
success = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Messy way of preventing us printing out the same help text for each scene
|
||||||
|
if (cmdparams.Length <= 0 || cmdparams[0] == "help")
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
|
|
Loading…
Reference in New Issue