Added option for UUID as command parameters. This lets the command handle the UUID parsing and type checking before the command is executed.

0.7.5-pf-bulletsim
Dan Lake 2013-01-31 11:14:43 -08:00 committed by Justin Clark-Casey (justincc)
parent 4c4cc917b4
commit f28a592310
1 changed files with 4 additions and 0 deletions

View File

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