nexusforever/Source/NexusForever.WorldServer/Command/Convert/StringLowerParameterConverter.cs

12 lines
368 B
C#

using NexusForever.WorldServer.Command.Context;
namespace NexusForever.WorldServer.Command.Convert
{
public class StringLowerParameterConverter : StringParameterConverter
{
public override object Convert(ICommandContext context, ParameterQueue queue)
{
return ((string)base.Convert(context, queue)).ToLower();
}
}
}