* Various terrain engine fixes

* Includes patch #894 fixes for terrain load-tile
* Large number of other terrain fixes and new commands included.
This commit is contained in:
Adam Frisby
2008-04-06 13:48:28 +00:00
parent 899f00b83d
commit 996309a6e1
9 changed files with 233 additions and 91 deletions

View File

@@ -249,7 +249,7 @@ namespace OpenSim.Region.Environment.Modules.ModuleFramework
{
if (m_commands.ContainsKey(function))
{
if (args[0] == "help")
if (args.Length > 0 && args[0] == "help")
{
m_commands[function].ShowConsoleHelp();
}