Added option for UUID as command parameters. This lets the command handle the UUID parsing and type checking before the command is executed.
parent
a0ef3df194
commit
17440d8a29
|
@ -28,6 +28,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using OpenSim.Region.Framework.Interfaces;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Region.CoreModules.Framework.InterfaceCommander
|
||||
{
|
||||
|
@ -152,6 +153,9 @@ namespace OpenSim.Region.CoreModules.Framework.InterfaceCommander
|
|||
case "Boolean":
|
||||
m_args[i].ArgumentValue = Boolean.Parse(arg.ToString());
|
||||
break;
|
||||
case "UUID":
|
||||
m_args[i].ArgumentValue = UUID.Parse(arg.ToString());
|
||||
break;
|
||||
default:
|
||||
Console.WriteLine("ERROR: Unknown desired type for argument " + m_args[i].Name + " on command " + m_name);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue