Example #1
0
 /// <summary>
 /// Executes the command.
 /// </summary>
 /// <param name="entry">Entry to be executed.</param>
 public override void Execute(CommandEntry entry)
 {
     if (entry.Arguments.Count < 1)
     {
         ShowUsage(entry);
     }
     else
     {
         string args = entry.AllArguments();
         entry.Info(TextStyle.Color_Simple + TagParser.Escape(args));
     }
 }