mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
12 lines
368 B
C#
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();
|
|
}
|
|
}
|
|
}
|